summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGianluigi Tiesi <mplayer@netfarm.it>2008-04-24 02:03:07 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2008-04-24 02:03:07 +0000
commit8d94f6065b4f7d1d49a03f940e165e47593cb844 (patch)
tree97f9094f51e2360dcaa2805e8a7e5db400ca0e44 /configure
parent5fd63f3c3b316a348bc76353b2b2956d5182135d (diff)
Support shared pthreads-win32.
Patch by Gianluigi Tiesi <mplayer at netfarm.it> Originally committed as revision 12933 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index ba816f5ccb..840d05470b 100755
--- a/configure
+++ b/configure
@@ -1593,6 +1593,8 @@ if enabled pthreads; then
elif check_func pthread_create -pthreads; then
add_cflags -pthreads
add_extralibs -pthreads
+ elif check_func pthread_create -lpthreadGC2; then
+ add_extralibs -lpthreadGC2
elif ! check_lib pthread.h pthread_create -lpthread; then
die "ERROR: can't find pthreads library"
fi