]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
long long: don't abort configure when cross-compiling
authorEric Blake <eblake@redhat.com>
Fri, 18 Feb 2011 17:41:56 +0000 (10:41 -0700)
committerEric Blake <eblake@redhat.com>
Fri, 18 Feb 2011 17:42:11 +0000 (10:42 -0700)
* lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Provide no-op
cross-compiling fallback; fixing regression from 2011-02-16.

Signed-off-by: Eric Blake <eblake@redhat.com>
ChangeLog
lib/autoconf/types.m4

index bbf29cf07bdde607ea50f9d8398beaea259a85e6..f46eb6f2f2b0dc77c7a6a4542693ac80841e73d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-02-18  Eric Blake  <eblake@redhat.com>
+
+       long long: don't abort configure when cross-compiling
+       * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Provide no-op
+       cross-compiling fallback; fixing regression from 2011-02-16.
+
 2011-02-16  Patrick Welche  <prlw1@cam.ac.uk>  (tiny change)
 
        docs: fix a typo
index 166aeb59f1d9a6fd01f568cbb4ecc13bfce71c12..c47884c5a1873d610c16cad26e69fade2fb81cf1 100644 (file)
@@ -529,7 +529,8 @@ AC_DEFUN([AC_TYPE_LONG_LONG_INT],
                   }
                 return 0;]])],
            [],
-           [ac_cv_type_long_long_int=no])
+           [ac_cv_type_long_long_int=no],
+           [:])
        fi
       fi])
   if test $ac_cv_type_long_long_int = yes; then