summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-25 14:28:39 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-25 14:28:39 +0000
commit31f26e9a3fc86d0f3d527fdc6a0765d439c513af (patch)
treef07e2a531f32e45b0c1f86757ee0bcda10aaf9ca /configure
parent824796ca1137dc3799415a585bc56e8b15962327 (diff)
downloadmpv-31f26e9a3fc86d0f3d527fdc6a0765d439c513af.tar.bz2
mpv-31f26e9a3fc86d0f3d527fdc6a0765d439c513af.tar.xz
Disentangle toolame CFLAGS and LDFLAGS handling.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19531 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure18
1 files changed, 6 insertions, 12 deletions
diff --git a/configure b/configure
index 5457fa02a4..6c5c8de870 100755
--- a/configure
+++ b/configure
@@ -418,7 +418,7 @@ multiple paths separated by ':'):
--with-x264libdir=DIR libx264 in DIR
--with-libdtslibdir=DIR libdts library in DIR (*)
--with-livelibdir=DIR LIVE555 Streaming Media libraries in DIR
- --with-toolamedir=DIR path to Toolame library and include file
+ --with-toolamelibdir=DIR Toolame library in DIR
--with-xmmsplugindir=DIR XMMS plugins in DIR
--with-xmmslibdir=DIR libxmms.so.1 in DIR
--with-cdparanoialibdir=DIR cdparanoia libraries (libcdda_*) in DIR (*)
@@ -2064,9 +2064,6 @@ for ac_option do
--with-livelibdir=*)
_livelibdir=`echo $ac_option | cut -d '=' -f 2`
;;
- --with-toolamedir=*)
- _toolamedir=`echo $ac_option | cut -d '=' -f 2`
- ;;
--with-mlibdir=*)
_mlibdir=`echo $ac_option | cut -d '=' -f 2`
;;
@@ -2150,6 +2147,9 @@ for ac_option do
--with-cdparanoialibdir=*)
_ld_cdparanoia=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
;;
+ --with-toolamelibdir=*)
+ _ld_toolame=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
+ ;;
--with-termcaplib=*)
_ld_termcap=-l`echo $ac_option | cut -d '=' -f 2`
;;
@@ -5532,19 +5532,14 @@ if test "$_toolame" = auto ; then
int main(void) { toolame_init(); return 0; }
EOF
_toolame=no
- _toolame_extraflags=""
- _toolame_lib="-ltoolame"
- if test -n "$_toolamedir"; then
- _toolame_extraflags="-I$_toolamedir -L$_toolamedir"
- fi
- cc_check $_toolame_extraflags $_toolame_lib $_ld_lm && _toolame=yes
+ cc_check $_ld_toolame -ltoolame $_ld_lm && _toolame=yes
fi
if test "$_toolame" = yes ; then
_def_toolame='#define HAVE_TOOLAME 1'
+ _toolame_lib="-ltoolame"
_codecmodules="$_codecmodules toolame"
else
_def_toolame='#undef HAVE_TOOLAME'
- _toolame_lib=""
_nocodecmodules="toolame $_nocodecmodules"
fi
if test "$_toolamedir" ; then
@@ -7435,7 +7430,6 @@ MACOSX_BUNDLE = $_macosx_bundle
MACOSX_FRAMEWORKS = $_macosx_frameworks
MACOSX_COREVIDEO = $_macosx_corevideo
TOOLAME=$_toolame
-TOOLAME_EXTRAFLAGS=$_toolame_extraflags
TOOLAME_LIB=$_toolame_lib
TWOLAME=$_twolame
TWOLAME_LIB=$_twolame_lib