Changeset a5634f95c58def01aa4cee4c881493c3ec6d6507
- Timestamp:
- 28/01/07 19:18:52
(2 years ago)
- Author:
- Cyril Deguet <asmax@videolan.org>
- git-committer:
- Cyril Deguet <asmax@videolan.org> 1170008332 +0000
- git-parent:
[0aa5744310de34261dc39c192a0a93046d79a3df]
- git-author:
- Cyril Deguet <asmax@videolan.org> 1170008332 +0000
- Message:
- thou shalt keep menuconfig up-to-date and not disable it
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4c5ad8e |
ra5634f9 |
|
| 88 | 88 | HTTPD httpd |
|---|
| 89 | 89 | JACK jack |
|---|
| | 90 | QT4 qt4 |
|---|
| 90 | 91 | " |
|---|
| 91 | 92 | PATHS=" |
|---|
| … | … | |
| 137 | 138 | |
|---|
| 138 | 139 | echo -n "./configure " > .cmd |
|---|
| 139 | | source .config |
|---|
| | 140 | . ./.config |
|---|
| 140 | 141 | |
|---|
| 141 | 142 | check_features () { |
|---|
| … | … | |
| 143 | 144 | do |
|---|
| 144 | 145 | eval x="\$CONFIG_$1" |
|---|
| 145 | | if [ "$x" == "y" ] |
|---|
| | 146 | if [ "$x" = "y" ] |
|---|
| 146 | 147 | then |
|---|
| 147 | | if [ "$1" == "WITHFFMPEGMP3LAME" ] || [ "$1" == "WITHFFMPEGFAAC" ] |
|---|
| | 148 | if [ "$1" = "WITHFFMPEGMP3LAME" ] || [ "$1" = "WITHFFMPEGFAAC" ] |
|---|
| 148 | 149 | then |
|---|
| 149 | 150 | echo -n "--with-$2 " >> .cmd |
|---|
| … | … | |
| 187 | 188 | fi |
|---|
| 188 | 189 | |
|---|
| 189 | | source .cmd |
|---|
| | 190 | . ./.cmd |
|---|
| 190 | 191 | make |
|---|
| 191 | 192 | rm -f .cmd |
|---|
| r4c5ad8e |
ra5634f9 |
|
| 17 | 17 | string 'wx-config name' CONFIG_WITHWXCONFIG "" |
|---|
| 18 | 18 | fi |
|---|
| | 19 | bool 'QT4 interface' CONFIG_QT4 |
|---|
| 19 | 20 | bool 'Skins interface' CONFIG_SKINS |
|---|
| 20 | 21 | if [ "$CONFIG_SKINS" = "y" ]; then |
|---|
| r0e867ba |
ra5634f9 |
|
| 4543 | 4543 | dnl |
|---|
| 4544 | 4544 | AC_ARG_ENABLE(skins2, |
|---|
| 4545 | | [ --enable-skins2 Skins2 interface module (experimental)]) |
|---|
| | 4545 | [ --enable-skins2 Skins2 interface module (default disabled)]) |
|---|
| 4546 | 4546 | if test "${enable_skins2}" = "yes" || |
|---|
| 4547 | 4547 | (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && |
|---|
| rec8172d |
ra5634f9 |
|
| 1 | | #! /bin/sh |
|---|
| | 1 | #! /bin/bash |
|---|
| 2 | 2 | # |
|---|
| 3 | 3 | # VLC media player configuration script, borrowed from linux menuconfig |
|---|
| 4 | 4 | # Cyril Deguet <asmax@videolan.org> |
|---|
| 5 | | |
|---|
| 6 | | # Currently out of date |
|---|
| 7 | | |
|---|
| 8 | | echo "'./menuconfig' is currently not maintained and out-of-date. Use './configure' instead." |
|---|
| 9 | | |
|---|
| 10 | | exit 1 |
|---|
| 11 | | |
|---|
| 12 | 5 | # |
|---|
| 13 | 6 | #----------------------------------------------------------------- |
|---|