diff options
author | Sascha Schumann <sas@php.net> | 1999-12-21 18:04:31 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-21 18:04:31 +0000 |
commit | 23e5aedd370cfc9611a244fe668c1eb033fa7ece (patch) | |
tree | 18003f50716065ffa9eb029dab4178d19c74a498 | |
parent | fa1f318d74fc7a944d4644aeb6ea4e87485eca7e (diff) | |
download | php-git-23e5aedd370cfc9611a244fe668c1eb033fa7ece.tar.gz |
Move TSRM checks, so that additional flags can be considered
@- Added GNU Pth support (Sascha, TSRM library)
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 47378a9284..049443f20a 100644 --- a/configure.in +++ b/configure.in @@ -723,6 +723,11 @@ dnl test -n "$GCC" && CFLAGS="$CFLAGS -fpic" dnl add -fPIC option on Solaris if we are building dynamic extensions dnl PHP_SOLARIS_PIC_WEIRDNESS +if test "$PHP_THREAD_SAFETY" = "yes"; then + TSRM_BASIC_CHECKS + TSRM_OTHER_CHECKS +fi + phplibdir="`pwd`/modules" phptempdir="`pwd`/libs" @@ -754,11 +759,6 @@ AC_SUBST(PHP_LDFLAGS) AC_SUBST(PHP_LIBS) AC_SUBST(PHP_SAPI) AC_SUBST(INSTALL_IT) - -if test "$PHP_THREAD_SAFETY" = "yes"; then - TSRM_BASIC_CHECKS - TSRM_PTHREAD -fi #libphp4.module AC_OUTPUT([Makefile php4.spec Zend/Makefile ext/Makefile sapi/Makefile pear/Makefile |