[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU Autoconf source repository branch, master, updated. v2.68-41-g
From: |
Eric Blake |
Subject: |
[SCM] GNU Autoconf source repository branch, master, updated. v2.68-41-g5d1fd36 |
Date: |
Fri, 18 Feb 2011 17:49:17 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Autoconf source repository".
http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=5d1fd3630946d3ac2a98f87a8558e83b8e1588cb
The branch, master has been updated
via 5d1fd3630946d3ac2a98f87a8558e83b8e1588cb (commit)
from 528040485276f1e83b0c53ae759cab4ab9246d04 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5d1fd3630946d3ac2a98f87a8558e83b8e1588cb
Author: Eric Blake <address@hidden>
Date: Fri Feb 18 10:41:56 2011 -0700
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.
Signed-off-by: Eric Blake <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
lib/autoconf/types.m4 | 3 ++-
2 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index bbf29cf..f46eb6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-02-18 Eric Blake <address@hidden>
+
+ 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 <address@hidden> (tiny change)
docs: fix a typo
diff --git a/lib/autoconf/types.m4 b/lib/autoconf/types.m4
index 166aeb5..c47884c 100644
--- a/lib/autoconf/types.m4
+++ b/lib/autoconf/types.m4
@@ -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
hooks/post-receive
--
GNU Autoconf source repository
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU Autoconf source repository branch, master, updated. v2.68-41-g5d1fd36,
Eric Blake <=