[Ffmpeg-cvslog] r6869 - trunk/configure

diego subversion
Thu Nov 2 13:12:53 CET 2006


Author: diego
Date: Thu Nov  2 13:12:52 2006
New Revision: 6869

Modified:
   trunk/configure

Log:
Accept multiple --extra-ldflags and --extra-libs options.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Thu Nov  2 13:12:52 2006
@@ -713,9 +713,9 @@
   ;;
   --extra-cflags=*) add_cflags "$optval"
   ;;
-  --extra-ldflags=*) EXTRALDFLAGS="$optval"
+  --extra-ldflags=*) add_ldflags "$optval"
   ;;
-  --extra-libs=*) extralibs="$optval"
+  --extra-libs=*) add_extralibs "$optval"
   ;;
   --build-suffix=*) BUILDSUF="$optval"
   ;;
@@ -917,8 +917,8 @@
     shlibdir='${PREFIX}'
 fi
 
-# Combine FFLDFLAGS, EXTRALDFLAGS and the LDFLAGS environment variable.
-LDFLAGS="$FFLDFLAGS $EXTRALDFLAGS $LDFLAGS"
+# Combine FFLDFLAGS and the LDFLAGS environment variable.
+LDFLAGS="$FFLDFLAGS $LDFLAGS"
 
 test -n "$cross_prefix" && cross_compile=yes
 cc="${cross_prefix}${cc}"




More information about the ffmpeg-cvslog mailing list