]> granicus.if.org Git - php/commitdiff
Fix config test
authorJohannes Schlüter <johannes@php.net>
Wed, 10 Feb 2010 13:37:17 +0000 (13:37 +0000)
committerJohannes Schlüter <johannes@php.net>
Wed, 10 Feb 2010 13:37:17 +0000 (13:37 +0000)
ext/standard/config.m4

index 0580d02f5195591db42ac206ee3898efdcfc1fef..8fa01ebaf2d2d70911d8bd884eabdcf63957b017 100644 (file)
@@ -239,12 +239,10 @@ if test "$ac_cv_crypt_blowfish" = "no" || test "$ac_cv_crypt_des" = "no" || test
   dnl
   dnl Check for __alignof__ support in the compiler
   dnl
-  AC_CACHE_CHECK(whether the compiler supports __alignof__,ac_cv_alignof_exists,[
+  AC_CACHE_CHECK(whether the compiler supports __alignof__, ac_cv_alignof_exists,[
   AC_TRY_COMPILE([
-int main() {
-       int align = __alignof__(int);
-       return 0;
-}
+  ],[
+    int align = __alignof__(int);
   ],[
     ac_cv_alignof_exists=yes
   ],[
@@ -257,8 +255,9 @@ int main() {
   dnl 
   dnl Check for __attribute__ ((__aligned__)) support in the compiler
   dnl
-  AC_CACHE_CHECK(whether the compiler supports aligned attribute,ac_cv_attribute_aligned,[
+  AC_CACHE_CHECK(whether the compiler supports aligned attribute, ac_cv_attribute_aligned,[
   AC_TRY_COMPILE([
+  ],[
     unsigned char test[32] __attribute__ ((__aligned__ (__alignof__ (int))));
   ],[
     ac_cv_attribute_aligned=yes
@@ -266,7 +265,7 @@ int main() {
     ac_cv_attribute_aligned=no
   ])])
   if test "$ac_cv_attribute_aligned" = "yes"; then
-    AC_DEFINE([HAVE_ATTRIBUTE_ALIGNED], 1, [wheter the compiler supports __attribute__ ((__aligned__))])
+    AC_DEFINE([HAVE_ATTRIBUTE_ALIGNED], 1, [Wheter the compiler supports __attribute__ ((__aligned__))])
   fi