johannes                Fri Jun 26 15:42:12 2009 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src    configure.in 
  Log:
  Fix trouble with memory alignment on Sparch, see #48668 (David)
  
http://cvs.php.net/viewvc.cgi/php-src/configure.in?r1=1.579.2.52.2.77.2.56&r2=1.579.2.52.2.77.2.57&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.579.2.52.2.77.2.56 
php-src/configure.in:1.579.2.52.2.77.2.57
--- php-src/configure.in:1.579.2.52.2.77.2.56   Thu Jun 18 21:07:08 2009
+++ php-src/configure.in        Fri Jun 26 15:42:11 2009
@@ -1,4 +1,4 @@
-## $Id: configure.in,v 1.579.2.52.2.77.2.56 2009/06/18 21:07:08 johannes Exp $ 
-*- autoconf -*-
+## $Id: configure.in,v 1.579.2.52.2.77.2.57 2009/06/26 15:42:11 johannes Exp $ 
-*- autoconf -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -217,8 +217,11 @@
     ;;
   sparc*)
     if test "$SUNCC" = "yes"; then
-      CFLAGS="$CFLAGS -xmemalign=8s"
+      CFLAGS="$CFLAGS -xmemalign=8i"
+    else
+      CFLAGS=""
     fi
+    ;;
 esac
 
 dnl activate some gcc specific optimizations for gcc >= 4



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to