summaryrefslogtreecommitdiff
path: root/m4/longlong.m4
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-02-18 10:25:36 -0700
committerEric Blake <eblake@redhat.com>2011-02-18 10:35:30 -0700
commit17adb5d75404cf6cdde0eb3b2edc6110d9fa8001 (patch)
tree82a5838071f9f74a9b961af03ee872a3f6250b40 /m4/longlong.m4
parente3dd01f37b0a3cf0f59df4eee43ff21eee521672 (diff)
downloadgnulib-17adb5d75404cf6cdde0eb3b2edc6110d9fa8001.tar.gz
longlong: skip, rather than fail, on cross-compilation
* m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Avoid aborting configure when cross-compiling; regression from 2011-02-16. Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'm4/longlong.m4')
-rw-r--r--m4/longlong.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/m4/longlong.m4 b/m4/longlong.m4
index 04c8303bca..aed816cfa5 100644
--- a/m4/longlong.m4
+++ b/m4/longlong.m4
@@ -1,4 +1,4 @@
-# longlong.m4 serial 15
+# longlong.m4 serial 16
dnl Copyright (C) 1999-2007, 2009-2011 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -45,7 +45,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