Mercurial > mplayer.hg
comparison configure @ 13909:07dadc3066f3
add support for macosx finder argument support (let you bundle mplayer to be a finder compliant .app) patch by Chris Roccati <roccati@pobox.com>
author | nplourde |
---|---|
date | Wed, 10 Nov 2004 16:43:40 +0000 |
parents | 2fcc9d0da3ae |
children | c012194ba7d7 |
comparison
equal
deleted
inserted
replaced
13908:befd295c58d3 | 13909:07dadc3066f3 |
---|---|
180 --enable-menu Enable OSD menu support (NOT DVD MENU) [disabled] | 180 --enable-menu Enable OSD menu support (NOT DVD MENU) [disabled] |
181 --disable-sortsub Disable subtitles sorting [enabled] | 181 --disable-sortsub Disable subtitles sorting [enabled] |
182 --enable-fribidi Enable using the FriBiDi libs [disabled] | 182 --enable-fribidi Enable using the FriBiDi libs [disabled] |
183 --disable-enca Disable using ENCA charset oracle library [autodetect] | 183 --disable-enca Disable using ENCA charset oracle library [autodetect] |
184 --disable-macosx Disable Mac OS X specific features [autodetect] | 184 --disable-macosx Disable Mac OS X specific features [autodetect] |
185 --enable-macosx-finder-support Enable Mac OS X Finder invocation parameter parsing [disabled] | |
185 --disable-inet6 Disable IPv6 support [autodetect] | 186 --disable-inet6 Disable IPv6 support [autodetect] |
186 --disable-gethostbyname2 gethostbyname() function is not provided by the C | 187 --disable-gethostbyname2 gethostbyname() function is not provided by the C |
187 library [autodetect] | 188 library [autodetect] |
188 --disable-ftp Disable ftp support [enabled] | 189 --disable-ftp Disable ftp support [enabled] |
189 | 190 |
1379 _fontconfig=auto | 1380 _fontconfig=auto |
1380 _shared_pp=no | 1381 _shared_pp=no |
1381 _menu=no | 1382 _menu=no |
1382 _qtx=auto | 1383 _qtx=auto |
1383 _macosx=auto | 1384 _macosx=auto |
1385 _macosx_finder_support=no | |
1384 _sortsub=yes | 1386 _sortsub=yes |
1385 _freetypeconfig='freetype-config' | 1387 _freetypeconfig='freetype-config' |
1386 _fribidi=no | 1388 _fribidi=no |
1387 _fribidiconfig='fribidi-config' | 1389 _fribidiconfig='fribidi-config' |
1388 _enca=auto | 1390 _enca=auto |
1646 --enable-qtx) _qtx=yes ;; | 1648 --enable-qtx) _qtx=yes ;; |
1647 --disable-qtx) _qtx=no ;; | 1649 --disable-qtx) _qtx=no ;; |
1648 | 1650 |
1649 --enable-macosx) _macosx=yes ;; | 1651 --enable-macosx) _macosx=yes ;; |
1650 --disable-macosx) _macosx=no ;; | 1652 --disable-macosx) _macosx=no ;; |
1653 --enable-macosx-finder-support) _macosx_finder_support=yes ;; | |
1654 --disable-macosx-finder-support) _macosx_finder_support=no ;; | |
1651 | 1655 |
1652 --enable-sortsub) _sortsub=yes ;; | 1656 --enable-sortsub) _sortsub=yes ;; |
1653 --disable-sortsub) _sortsub=no ;; | 1657 --disable-sortsub) _sortsub=no ;; |
1654 | 1658 |
1655 --language=*) | 1659 --language=*) |
3138 _novomodules="quartz $_novomodules" | 3142 _novomodules="quartz $_novomodules" |
3139 fi | 3143 fi |
3140 fi | 3144 fi |
3141 echores "$_macosx" | 3145 echores "$_macosx" |
3142 | 3146 |
3147 echocheck "Mac OS X Finder Support" | |
3148 if test "$_macosx_finder_support" = auto ; then | |
3149 _macosx_finder_support=$_macosx | |
3150 fi | |
3151 if test "$_macosx_finder_support" = yes; then | |
3152 _def_macosx_finder_support='#define MACOSX_FINDER_SUPPORT 1' | |
3153 _macosx_finder_support=yes | |
3154 else | |
3155 _def_macosx_finder_support='#undef MACOSX_FINDER_SUPPORT' | |
3156 _macosx_finder_support=no | |
3157 fi | |
3158 echores "$_macosx_finder_support" | |
3143 | 3159 |
3144 echocheck "Samba support (libsmbclient)" | 3160 echocheck "Samba support (libsmbclient)" |
3145 if test "$_smbsupport" = yes; then | 3161 if test "$_smbsupport" = yes; then |
3146 _ld_smb="-lsmbclient" | 3162 _ld_smb="-lsmbclient" |
3147 fi | 3163 fi |
6569 INTERNAL_FAAD = $_faad_internal | 6585 INTERNAL_FAAD = $_faad_internal |
6570 SMBSUPPORT_LIB = $_ld_smb | 6586 SMBSUPPORT_LIB = $_ld_smb |
6571 XMMS_PLUGINS = $_xmms | 6587 XMMS_PLUGINS = $_xmms |
6572 XMMS_LIB = $_xmms_lib | 6588 XMMS_LIB = $_xmms_lib |
6573 MACOSX = $_macosx | 6589 MACOSX = $_macosx |
6590 MACOSX_FINDER_SUPPORT = $_macosx_finder_support | |
6574 MACOSX_FRAMEWORKS = $_macosx_frameworks | 6591 MACOSX_FRAMEWORKS = $_macosx_frameworks |
6575 TOOLAME=$_toolame | 6592 TOOLAME=$_toolame |
6576 TOOLAME_EXTRAFLAGS=$_toolame_extraflags | 6593 TOOLAME_EXTRAFLAGS=$_toolame_extraflags |
6577 TOOLAME_LIB=$_toolame_lib | 6594 TOOLAME_LIB=$_toolame_lib |
6578 | 6595 |
6872 /* DirectShow support */ | 6889 /* DirectShow support */ |
6873 $_def_dshow | 6890 $_def_dshow |
6874 | 6891 |
6875 /* Mac OS X specific features */ | 6892 /* Mac OS X specific features */ |
6876 $_def_macosx | 6893 $_def_macosx |
6894 $_def_macosx_finder_support | |
6877 | 6895 |
6878 /* Build our Win32-loader */ | 6896 /* Build our Win32-loader */ |
6879 $_def_win32_loader | 6897 $_def_win32_loader |
6880 | 6898 |
6881 /* ffmpeg's libavcodec support (requires libavcodec source) */ | 6899 /* ffmpeg's libavcodec support (requires libavcodec source) */ |