summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2003-06-28 07:46:38 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2003-06-28 07:46:38 (GMT)
commitab1e5858eea540e50e8acccdbd37ff86a5afdd19 (patch)
tree90bbeb11bf9e83b41613b4d0526e5e72ae102186 /configure
parentafec8e3bde02048524bd1b19d7b2c7c3cc175057 (diff)
downloadcpython-ab1e5858eea540e50e8acccdbd37ff86a5afdd19.zip
cpython-ab1e5858eea540e50e8acccdbd37ff86a5afdd19.tar.gz
cpython-ab1e5858eea540e50e8acccdbd37ff86a5afdd19.tar.bz2
Patch #758910: Add pthread flag to CXX if possible.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure45
1 files changed, 44 insertions, 1 deletions
diff --git a/configure b/configure
index 810e718..ef183c7 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.417 .
+# From configure.in Revision: 1.418 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
#
@@ -4018,6 +4018,49 @@ echo "$as_me:$LINENO: result: $ac_cv_pthread" >&5
echo "${ECHO_T}$ac_cv_pthread" >&6
fi
+# If we have set a CC compiler flag for thread support then
+# check if it works for CXX, too.
+ac_cv_cxx_thread=no
+if test ! -z "$CXX"
+then
+echo "$as_me:$LINENO: checking whether $CXX also accepts flags for thread support" >&5
+echo $ECHO_N "checking whether $CXX also accepts flags for thread support... $ECHO_C" >&6
+ac_save_cxx="$CXX"
+
+if test "$ac_cv_kpthread" = "yes"
+then
+ CXX="$CXX -Kpthread"
+ ac_cv_cxx_thread=yes
+elif test "$ac_cv_kthread" = "yes"
+then
+ CXX="$CXX -Kthread"
+ ac_cv_cxx_thread=yes
+elif test "$ac_cv_pthread" = "yes"
+then
+ CXX="$CXX -pthread"
+ ac_cv_cxx_thread=yes
+fi
+
+if test $ac_cv_cxx_thread = yes
+then
+ echo 'void foo();int main(){foo();}void foo(){}' > conftest.$ac_ext
+ $CXX -c conftest.$ac_ext 2>&5
+ if $CXX -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
+ && test -s conftest$ac_exeext && ./conftest$ac_exeext
+ then
+ ac_cv_cxx_thread=yes
+ else
+ ac_cv_cxx_thread=no
+ CXX="$ac_save_cxx"
+ fi
+ rm -fr conftest*
+else
+ CXX="$ac_save_cxx"
+fi
+fi
+echo "$as_me:$LINENO: result: $ac_cv_cxx_thread" >&5
+echo "${ECHO_T}$ac_cv_cxx_thread" >&6
+
# checks for header files
echo "$as_me:$LINENO: checking for ANSI C header files" >&5