From b265431e2321d27b9e9264d15f40b16781d1dd58 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Tue, 14 Nov 2006 02:27:35 +0000 Subject: [PATCH] clean up setting of HAVE_*THREADS Originally committed as revision 7037 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/configure b/configure index b2fbe40..cd3bad2 100755 --- a/configure +++ b/configure @@ -402,6 +402,7 @@ CONFIG_LIST=' HAVE_LIST=' altivec_h + beosthreads byteswap_h dcbzl dlfcn @@ -414,8 +415,12 @@ HAVE_LIST=' malloc_h memalign mlib + os2threads + pthreads sdl sdl_video_size + threads + w32threads ' # set temporary file name @@ -618,6 +623,7 @@ video4linux2="no" dv1394="no" # enable BeOS things audio_beos="yes" +beosthreads="yes" # no need for libm, but the inet stuff # Check for BONE if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then @@ -761,7 +767,7 @@ dv1394="no" ffserver="no" vhook="no" os2="yes" - +os2threads="yes" ;; *) targetos="${targetos}-UNKNOWN" @@ -1019,6 +1025,9 @@ EOF dc1394="no" ffserver="no" network="no" + if enabled mingw32; then + w32threads="yes" + fi if test "$mingwce" = "yes"; then protocols="no" fi @@ -1931,11 +1940,6 @@ if test "$altivec" = "yes" ; then echo "#define HAVE_ALTIVEC 1" >> $TMPH fi -if test "$pthreads" = "yes" ; then - echo "HAVE_PTHREADS=yes" >> config.mak - echo "#define HAVE_PTHREADS 1" >> $TMPH - echo "#define HAVE_THREADS 1" >> $TMPH -fi if test "$sdl" = "yes" ; then echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak @@ -1979,13 +1983,12 @@ enabled_any $DECODER_LIST && enable decoders enabled_any $MUXER_LIST && enable muxers enabled_any $DEMUXER_LIST && enable demuxers +enabled_any pthreads beosthreads os2threads w32threads && enable threads + print_config HAVE_ $TMPH config.mak $HAVE_LIST print_config CONFIG_ $TMPH config.mak $CONFIG_LIST if test "$mingw32" = "yes" ; then - echo "HAVE_W32THREADS=yes" >> config.mak - echo "#define HAVE_W32THREADS 1" >> $TMPH - echo "#define HAVE_THREADS 1" >> $TMPH echo "#ifndef __MINGW32__" >> $TMPH echo "#define __MINGW32__ 1" >> $TMPH echo "#endif" >> $TMPH @@ -2000,15 +2003,6 @@ fi if test "$os2" = "yes" ; then echo "#define CONFIG_OS2 1" >> $TMPH - echo "HAVE_OS2THREADS=yes" >> config.mak - echo "#define HAVE_OS2THREADS 1" >> $TMPH - echo "#define HAVE_THREADS 1" >> $TMPH -fi - -if test "$targetos" = "BeOS" ; then - echo "HAVE_BEOSTHREADS=yes" >> config.mak - echo "#define HAVE_BEOSTHREADS 1" >> $TMPH - echo "#define HAVE_THREADS 1" >> $TMPH fi if test "$targetos" = "Darwin"; then -- 2.7.4