]> granicus.if.org Git - php/commitdiff
This should fix those solaris+gcc bugs when --enable-libgcc is not used
authorfoobar <sniper@php.net>
Tue, 23 Jul 2002 01:58:02 +0000 (01:58 +0000)
committerfoobar <sniper@php.net>
Tue, 23 Jul 2002 01:58:02 +0000 (01:58 +0000)
configure.in

index 89eeb4813e61d71db46ee80c7988f8953d5cc6a5..0febc5dfb112f4f9f61c9e3c0489353e66e37f1c 100644 (file)
@@ -82,36 +82,6 @@ if test -n "$with_apache" && test -n "$with_apxs"; then
 fi
 
 
-
-dnl Platform-specific compile settings.
-dnl -------------------------------------------------------------------------
-
-dnl if host_alias is empty, ac_cv_host_alias may still have the info
-if test -z "$host_alias"; then
-    host_alias=$ac_cv_host_alias
-fi
-
-case $host_alias in
-*solaris*)
-    CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
-    if test "${enable_libgcc+set}" != "set" && test "$GCC" = "yes"; then
-      enable_libgcc=yes
-    fi
-    ;;
-*dgux*)
-    CPPFLAGS="$CPPFLAGS -D_BSD_TIMEOFDAY_FLAVOR";;
-*darwin*|*rhapsody*)
-    CPPFLAGS="$CPPFLAGS -no-cpp-precomp"
-    php_multiple_shlib_versions_ok=yes;;
-*beos*)
-    beos_threads=1
-    LIBS="$LIBS -lbe -lroot";;
-*mips*)
-    CPPFLAGS="$CPPFLAGS -D_XPG_IV";;
-esac
-
-
-
 dnl Settings we want to make before the checks.
 dnl -------------------------------------------------------------------------
 
@@ -185,6 +155,33 @@ if test "$ac_cv_c_const" = "yes" ; then
 fi
 
 
+dnl Platform-specific compile settings.
+dnl -------------------------------------------------------------------------
+
+dnl if host_alias is empty, ac_cv_host_alias may still have the info
+if test -z "$host_alias"; then
+    host_alias=$ac_cv_host_alias
+fi
+
+case $host_alias in
+*solaris*)
+    CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
+    if test "${enable_libgcc+set}" != "set" && test "$GCC" = "yes"; then
+      enable_libgcc=yes
+    fi
+    ;;
+*dgux*)
+    CPPFLAGS="$CPPFLAGS -D_BSD_TIMEOFDAY_FLAVOR";;
+*darwin*|*rhapsody*)
+    CPPFLAGS="$CPPFLAGS -no-cpp-precomp"
+    php_multiple_shlib_versions_ok=yes;;
+*beos*)
+    beos_threads=1
+    LIBS="$LIBS -lbe -lroot";;
+*mips*)
+    CPPFLAGS="$CPPFLAGS -D_XPG_IV";;
+esac
+
 
 dnl Include Zend and TSRM configurations.
 dnl -------------------------------------------------------------------------