Browse Source

Never tell link editor to libc. Some systems use thread-safe

replacements for libc in Pthreads mode.
PHP-4.0.5
Sascha Schumann 27 years ago
parent
commit
b345acb577
  1. 4
      acinclude.m4

4
acinclude.m4

@ -401,7 +401,9 @@ dnl add a library to the link line
dnl
AC_DEFUN(AC_ADD_LIBRARY,[
AC_PHP_ONCE(LIBRARY, $1, [
ifelse($#, 1, LIBS="-l$1 $LIBS", LIBS="$LIBS -l$1")
if test "$1" != "c"; then
ifelse($#, 1, LIBS="-l$1 $LIBS", LIBS="$LIBS -l$1")
fi
])
])

Loading…
Cancel
Save