[FFmpeg-cvslog] r11618 - trunk/configure

diego subversion
Sat Jan 26 14:31:50 CET 2008


Author: diego
Date: Sat Jan 26 14:31:50 2008
New Revision: 11618

Log:
Add -pthread to extralibs and not to ldflags so that the dependency gets
reflected in the pkg-config files.
noticed by j .at. v2v .dot. cc


Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sat Jan 26 14:31:50 2008
@@ -1606,10 +1606,10 @@ if enabled pthreads; then
         :
     elif check_func pthread_create -pthread; then
         add_cflags -pthread
-        add_ldflags -pthread
+        add_extralibs -pthread
     elif check_func pthread_create -pthreads; then
         add_cflags -pthreads
-        add_ldflags -pthreads
+        add_extralibs -pthreads
     elif ! check_lib pthread.h pthread_create -lpthread; then
         die "ERROR: can't find pthreads library"
     fi




More information about the ffmpeg-cvslog mailing list