ed32a4e072
OK ajacoutot@, sthen@
67 lines
3.3 KiB
Plaintext
67 lines
3.3 KiB
Plaintext
$OpenBSD: patch-configure,v 1.6 2010/09/23 09:27:21 dcoppa Exp $
|
|
--- configure.orig Mon Sep 20 10:02:51 2010
|
|
+++ configure Mon Sep 20 10:08:38 2010
|
|
@@ -12694,13 +12694,13 @@ rm -f core conftest.err conftest.$ac_objext \
|
|
if test -n "$gl_have_pthread"; then
|
|
# The program links fine without libpthread. But it may actually
|
|
# need to link with libpthread in order to create multiple threads.
|
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5
|
|
-$as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
|
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -pthread" >&5
|
|
+$as_echo_n "checking for pthread_kill in -pthread... " >&6; }
|
|
if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then :
|
|
$as_echo_n "(cached) " >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lpthread $LIBS"
|
|
+LIBS="-pthread $LIBS"
|
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
/* end confdefs.h. */
|
|
|
|
@@ -12731,7 +12731,7 @@ fi
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5
|
|
$as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
|
|
if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then :
|
|
- LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
|
|
+ LIBMULTITHREAD=-pthread LTLIBMULTITHREAD=-pthread
|
|
# On Solaris and HP-UX, most pthread functions exist also in libc.
|
|
# Therefore pthread_in_use() needs to actually try to create a
|
|
# thread: pthread_create from libc will fail, whereas
|
|
@@ -12747,13 +12747,13 @@ fi
|
|
|
|
else
|
|
# Some library is needed. Try libpthread and libc_r.
|
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5
|
|
-$as_echo_n "checking for pthread_kill in -lpthread... " >&6; }
|
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -pthread" >&5
|
|
+$as_echo_n "checking for pthread_kill in -pthread... " >&6; }
|
|
if test "${ac_cv_lib_pthread_pthread_kill+set}" = set; then :
|
|
$as_echo_n "(cached) " >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lpthread $LIBS"
|
|
+LIBS="-pthread $LIBS"
|
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
/* end confdefs.h. */
|
|
|
|
@@ -12785,8 +12785,8 @@ fi
|
|
$as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; }
|
|
if test "x$ac_cv_lib_pthread_pthread_kill" = x""yes; then :
|
|
gl_have_pthread=yes
|
|
- LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread
|
|
- LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread
|
|
+ LIBTHREAD=-pthread LTLIBTHREAD=-pthread
|
|
+ LIBMULTITHREAD=-pthread LTLIBMULTITHREAD=-pthread
|
|
fi
|
|
|
|
if test -z "$gl_have_pthread"; then
|
|
@@ -17414,7 +17414,7 @@ $as_echo_n "checking Python compile flags... " >&6; }
|
|
PY_PREFIX=`$pythonpath -c 'import sys; print sys.prefix'`
|
|
PY_EXEC_PREFIX=`$pythonpath -c 'import sys; print sys.exec_prefix'`
|
|
if test -f $PY_INC/Python.h; then
|
|
- PY_LIBS="-L$PY_LIB/config -lpython$PY_VER -lpthread -lutil"
|
|
+ PY_LIBS="-L$PY_LIB/config -lpython$PY_VER -pthread -lutil"
|
|
PY_CFLAGS="-I$PY_INC"
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
|
|
$as_echo "ok" >&6; }
|