autoconf-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Autoconf source repository branch, master, updated. v2.65-12-g


From: Ralf Wildenhues
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.65-12-g918c278
Date: Wed, 09 Dec 2009 18:56:18 +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=918c278978f4ac243740c6997be14e6ba443ba4e

The branch, master has been updated
       via  918c278978f4ac243740c6997be14e6ba443ba4e (commit)
       via  83ee5bc460a1083ab29fd9d3a3044cbaefad6ac6 (commit)
      from  9900c340468dc424d567ba983ae4ebdc10c624ee (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 918c278978f4ac243740c6997be14e6ba443ba4e
Author: Ralf Wildenhues <address@hidden>
Date:   Wed Dec 9 19:53:20 2009 +0100

    Fix NEWS description for AC_FUNC_MMAP entry.
    
    * NEWS: Update.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

commit 83ee5bc460a1083ab29fd9d3a3044cbaefad6ac6
Author: Ralf Wildenhues <address@hidden>
Date:   Wed Dec 9 07:20:16 2009 +0100

    Fix 2.64 AC_TYPE_INT*_T macro body text regression.
    
    * lib/autoconf/types.m4 (_AC_TYPE_INT_BODY): Move helper enum
    definition to prologue section, to avoid syntax error.
    * NEWS, THANKS: Update.
    Report by Pierre Ynard.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog             |   11 +++++++++++
 NEWS                  |    5 ++++-
 THANKS                |    1 +
 lib/autoconf/types.m4 |   12 ++++++------
 4 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 06ff28a..568a748 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2009-12-09  Ralf Wildenhues  <address@hidden>
+
+       Fix NEWS description for AC_FUNC_MMAP entry.
+       * NEWS: Update.
+
+       Fix 2.65 AC_TYPE_INT*_T macro body text regression.
+       * lib/autoconf/types.m4 (_AC_TYPE_INT_BODY): Move helper enum
+       definition to prologue section, to avoid syntax error.
+       * NEWS, THANKS: Update.
+       Report by Pierre Ynard.
+
 2009-12-09  Paolo Bonzini  <address@hidden>
 
        Fix `recursion' test failure.
diff --git a/NEWS b/NEWS
index 97dcab0..69cca79 100644
--- a/NEWS
+++ b/NEWS
@@ -3,11 +3,14 @@ GNU Autoconf NEWS - User visible changes.
 * Major changes in Autoconf 2.65a (????-??-??) [experimental]
   Released by ???? ????
 
-** AC_FUNC_MMAP works in C++ mode again.  Regression introduced in 2.64.
+** AC_FUNC_MMAP works in C++ mode again.  Regression introduced in 2.65.
 
 ** Use of m4_divert without a named diversion now issues a syntax warning,
    since it is seldom right to change diversions behind autoconf's back.
 
+** The macros AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, and
+   AC_TYPE_INT64_T work again.  Regression introduced in 2.65.
+
 * Major changes in Autoconf 2.65 (2009-11-21) [stable]
   Released by Eric Blake, based on git versions 2.64.*.
 
diff --git a/THANKS b/THANKS
index fdd6930..5ec7633 100644
--- a/THANKS
+++ b/THANKS
@@ -307,6 +307,7 @@ Peter Stephenson            address@hidden
 Philipp Thomas              address@hidden
 Philippe De Muyter          ?
 Pierre                      address@hidden
+Pierre Ynard                address@hidden
 Pontus Skoeld               address@hidden
 Rainer Orth                 address@hidden
 Raja R Harinath             address@hidden
diff --git a/lib/autoconf/types.m4 b/lib/autoconf/types.m4
index 7a73fc2..3829c4c 100644
--- a/lib/autoconf/types.m4
+++ b/lib/autoconf/types.m4
@@ -635,14 +635,14 @@ m4_define([_AC_TYPE_INT_BODY],
         'long long int' 'short int' 'signed char'; do
        AC_COMPILE_IFELSE(
         [AC_LANG_BOOL_COMPILE_TRY(
-           [AC_INCLUDES_DEFAULT],
-           [enum { N = $[]2 / 2 - 1 };
-            0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)])],
+           [AC_INCLUDES_DEFAULT
+            enum { N = $[]2 / 2 - 1 };],
+           [0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)])],
         [AC_COMPILE_IFELSE(
            [AC_LANG_BOOL_COMPILE_TRY(
-              [AC_INCLUDES_DEFAULT],
-              [enum { N = $[]2 / 2 - 1 };
-               ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
+              [AC_INCLUDES_DEFAULT
+               enum { N = $[]2 / 2 - 1 };],
+              [($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
                 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2)])],
            [],
            [AS_CASE([$ac_type], [int$[]2_t],


hooks/post-receive
-- 
GNU Autoconf source repository




reply via email to

[Prev in Thread] Current Thread [Next in Thread]