summaryrefslogtreecommitdiff
path: root/sys-devel/autoconf/files
diff options
context:
space:
mode:
Diffstat (limited to 'sys-devel/autoconf/files')
-rw-r--r--sys-devel/autoconf/files/autoconf-2.59-more-quotes.patch34
-rw-r--r--sys-devel/autoconf/files/autoconf-2.61-GETMNTENT.patch23
-rw-r--r--sys-devel/autoconf/files/autoconf-2.62-at-keywords.patch81
-rw-r--r--sys-devel/autoconf/files/autoconf-2.62-fix-multiline-string.patch30
-rw-r--r--sys-devel/autoconf/files/autoconf-2.62-revert-AC_C_BIGENDIAN.patch214
-rw-r--r--sys-devel/autoconf/files/autoconf-2.63-sh.patch32
-rw-r--r--sys-devel/autoconf/files/autoconf-2.65-AC_TYPE_INT_T.patch49
7 files changed, 0 insertions, 463 deletions
diff --git a/sys-devel/autoconf/files/autoconf-2.59-more-quotes.patch b/sys-devel/autoconf/files/autoconf-2.59-more-quotes.patch
deleted file mode 100644
index eb2c8395fa90..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.59-more-quotes.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-http://bugs.gentoo.org/96882
-
-date: 2005/06/23 20:09:27; author: eggert; state: Exp; lines: +29 -34
-Fix some more shell quoting problems. Prompted by a bug report
-from Justace Clutter.
-* lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Allow special
-characters in $ac_unique_file.
-
---- lib/autoconf/general.m4
-+++ lib/autoconf/general.m4
-@@ -476,20 +476,20 @@
- # Try the directory containing this script, then its parent.
- ac_confdir=`AS_DIRNAME(["$[0]"])`
- srcdir=$ac_confdir
-- if test ! -r $srcdir/$ac_unique_file; then
-+ if test ! -r "$srcdir/$ac_unique_file"; then
- srcdir=..
- fi
- else
- ac_srcdir_defaulted=no
- fi
--if test ! -r $srcdir/$ac_unique_file; then
-+if test ! -r "$srcdir/$ac_unique_file"; then
- if test "$ac_srcdir_defaulted" = yes; then
- AC_MSG_ERROR([cannot find sources ($ac_unique_file) in $ac_confdir or ..])
- else
- AC_MSG_ERROR([cannot find sources ($ac_unique_file) in $srcdir])
- fi
- fi
--(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
-+(cd $srcdir && test -r "./$ac_unique_file") 2>/dev/null ||
- AC_MSG_ERROR([sources are in $srcdir, but `cd $srcdir' does not work])
- dnl Double slashes in pathnames in object file debugging info
- dnl mess up M-x gdb in Emacs.
diff --git a/sys-devel/autoconf/files/autoconf-2.61-GETMNTENT.patch b/sys-devel/autoconf/files/autoconf-2.61-GETMNTENT.patch
deleted file mode 100644
index 7cdc425e0396..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.61-GETMNTENT.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From: Paul Eggert <eggert@cs.ucla.edu>
-Date: Sat, 16 Dec 2006 05:38:41 +0000 (+0000)
-Subject: * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
-X-Git-Tag: v2.62~386
-X-Git-Url: http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff_plain;h=a152d401584cd901f7295647af0382948369de79
-
-* lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
-Define HAVE_GETMNTENT to 1, not to the empty string.
-Problem originally reported by Jochen Friedrich in
-<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
----
-
---- a/lib/autoconf/functions.m4
-+++ b/lib/autoconf/functions.m4
-@@ -798,7 +798,7 @@ AC_DEFUN([AC_FUNC_GETMNTENT],
- # -lseq on Dynix/PTX, -lgen on Unixware.
- AC_SEARCH_LIBS(getmntent, [sun seq gen],
- [ac_cv_func_getmntent=yes
-- AC_DEFINE([HAVE_GETMNTENT], [],
-+ AC_DEFINE([HAVE_GETMNTENT], 1,
- [Define to 1 if you have the `getmntent' function.])],
- [ac_cv_func_getmntent=no])
- ])
diff --git a/sys-devel/autoconf/files/autoconf-2.62-at-keywords.patch b/sys-devel/autoconf/files/autoconf-2.62-at-keywords.patch
deleted file mode 100644
index 04cd1807b8a0..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.62-at-keywords.patch
+++ /dev/null
@@ -1,81 +0,0 @@
-commit 3ac7ceb0c2dfd023e0e9e944da6825b6bd676568
-Author: Eric Blake <ebb9@byu.net>
-Date: Thu Jun 5 15:18:11 2008 -0600
-
- Fix regression in AT_KEYWORDS([Macro]), from 2007-10-18.
-
- * lib/autotest/general.m4 (AT_KEYWORDS): Expand argument prior to
- converting it to lower case.
- * tests/autotest.at (Keywords and ranges): Test this.
- * NEWS: Document the fix.
- * THANKS: Update.
- Reported by Karsten Hopp.
-
- Signed-off-by: Eric Blake <ebb9@byu.net>
-
-diff --git a/NEWS b/NEWS
-index 183d4f1..8b866ad 100644
---- a/NEWS
-+++ b/NEWS
-@@ -9,6 +9,10 @@ GNU Autoconf NEWS - User visible changes.
- ** Two new quadrigraphs have been introduced: @{:@ for (, and @:}@ for ),
- allowing the output of unbalanced parantheses in more contexts.
-
-+** AT_KEYWORDS once again performs expansion on its argument, such that
-+ AT_KEYWORDS([m4_if([$1], [], [default])]) no longer complains about
-+ the possibly unexpanded m4_if [regression introduced in 2.62].
-+
-
- * Major changes in Autoconf 2.62 (2008-04-05) [stable]
- Released by Eric Blake, based on git versions 2.61a.*.
-diff --git a/THANKS b/THANKS
-index 5ec8921..224cdea 100644
---- a/THANKS
-+++ b/THANKS
-@@ -177,6 +177,7 @@ Justace Clutter ?
- Jörn Rennecke amylaar@cygnus.co.uk
- Karl Berry karl@cs.umb.edu
- Karl Heuer kwzh@gnu.org
-+Karsten Hopp karsten@redhat.com
- Kate Hedstrom ?
- Kathryn Hargreaves kathryn@deas.harvard.edu
- Kaveh R. Ghazi ghazi@caip.rutgers.edu
-diff --git a/lib/autotest/general.m4 b/lib/autotest/general.m4
-index 88d10a3..993dd9f 100644
---- a/lib/autotest/general.m4
-+++ b/lib/autotest/general.m4
-@@ -1476,9 +1476,10 @@ m4_case([$1],
- # AT_KEYWORDS(KEYWORDS)
- # ---------------------
- # Declare a list of keywords associated to the current test group.
--# The list is stored in lower case, since the -k option is case-insensitive.
-+# Since the -k option is case-insensitive, the list is stored in lower case
-+# to avoid duplicates that differ only by case.
- _AT_DEFINE_SETUP([AT_KEYWORDS],
--[m4_append_uniq_w([AT_keywords], m4_tolower([[$1]]))])
-+[m4_append_uniq_w([AT_keywords], m4_tolower(m4_dquote(m4_expand([$1]))))])
-
-
- # AT_CAPTURE_FILE(FILE)
-diff --git a/tests/autotest.at b/tests/autotest.at
-index dc3cfd5..c4c0eda 100644
---- a/tests/autotest.at
-+++ b/tests/autotest.at
-@@ -690,7 +690,7 @@ AT_CHECK(:)
- AT_CLEANUP
- AT_SETUP(both) # 04
- AT_KEYWORDS([key1 key2])
--AT_KEYWORDS([key1])
-+AT_KEYWORDS([m4@&t@_echo([Key1])])
- AT_CHECK(:)
- AT_CLEANUP
- AT_SETUP(test5) # 05
-@@ -713,7 +713,7 @@ AT_CHECK(:)
- AT_CLEANUP
- ]])
- dnl check that AT_KEYWORDS does not duplicate words
--AT_CHECK([grep 'key1.*key1' k], [1])
-+AT_CHECK([grep -i 'key1.*key1' k], [1])
- dnl check that -k requires an argument
- AT_CHECK([$CONFIG_SHELL ./k -k], [1], [], [ignore])
-
diff --git a/sys-devel/autoconf/files/autoconf-2.62-fix-multiline-string.patch b/sys-devel/autoconf/files/autoconf-2.62-fix-multiline-string.patch
deleted file mode 100644
index cfd7b4228794..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.62-fix-multiline-string.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-sniped from mandrivia:
-http://svn.mandriva.com/cgi-bin/viewvc.cgi/packages/cooker/autoconf/current/SOURCES/autoconf-2.62-fix-multiline-string.patch
-
-this may not be the correct fix, but it seems to get the job done until we can
-grab whatever upstream merges
-http://lists.gnu.org/archive/html/bug-autoconf/2008-04/msg00031.html
-
---- autoconf-2.62/lib/autoconf/status.m4
-+++ autoconf-2.62/lib/autoconf/status.m4
-@@ -1360,16 +1360,16 @@ _ACEOF
- cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
- # Files that config.status was made for.
- m4_ifdef([_AC_SEEN_CONFIG(FILES)],
--[config_files="$ac_config_files"
-+[config_files="`echo $ac_config_files`"
- ])dnl
- m4_ifdef([_AC_SEEN_CONFIG(HEADERS)],
--[config_headers="$ac_config_headers"
-+[config_headers="`echo $ac_config_headers`"
- ])dnl
- m4_ifdef([_AC_SEEN_CONFIG(LINKS)],
--[config_links="$ac_config_links"
-+[config_links="`echo $ac_config_links`"
- ])dnl
- m4_ifdef([_AC_SEEN_CONFIG(COMMANDS)],
--[config_commands="$ac_config_commands"
-+[config_commands="`echo $ac_config_commands`"
- ])dnl
-
- _ACEOF
diff --git a/sys-devel/autoconf/files/autoconf-2.62-revert-AC_C_BIGENDIAN.patch b/sys-devel/autoconf/files/autoconf-2.62-revert-AC_C_BIGENDIAN.patch
deleted file mode 100644
index 76db013cac53..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.62-revert-AC_C_BIGENDIAN.patch
+++ /dev/null
@@ -1,214 +0,0 @@
-revert AC_C_BIGENDIAN to the version found in 2.61 since the version in 2.62 is
-known to be broken and the changes that it brings are not critical
-
-http://bugs.gentoo.org/228825
-
---- autoconf-2.62/lib/autoconf/c.m4
-+++ autoconf-2.61/lib/autoconf/c.m4
-@@ -1393,140 +1351,74 @@
- ])# AC_C_CHAR_UNSIGNED
-
-
--# AC_C_BIGENDIAN ([ACTION-IF-TRUE], [ACTION-IF-FALSE], [ACTION-IF-UNKNOWN],
--# [ACTION-IF-UNIVERSAL])
-+# AC_C_BIGENDIAN ([ACTION-IF-TRUE], [ACTION-IF-FALSE], [ACTION-IF-UNKNOWN])
- # -------------------------------------------------------------------------
- AC_DEFUN([AC_C_BIGENDIAN],
--[AH_VERBATIM([WORDS_BIGENDIAN],
--[/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
-- significant byte first (like Motorola and SPARC, unlike Intel and VAX). */
--#if defined __BIG_ENDIAN__
--# define WORDS_BIGENDIAN 1
--#elif ! defined __LITTLE_ENDIAN__
--# undef WORDS_BIGENDIAN
--#endif])dnl
-- AC_CACHE_CHECK([whether byte ordering is bigendian], [ac_cv_c_bigendian],
-- [ac_cv_c_bigendian=unknown
-- m4_ifval(m4_ifdef([AH_HEADER], 1)[$4],
-- [# See if __BIG_ENDIAN__ or __LITTLE_ENDIAN__ is defined.
-- AC_COMPILE_IFELSE(
-- [AC_LANG_SOURCE(
-- [[#if ! (defined __BIG_ENDIAN__ || defined __LITTLE_ENDIAN__)
-- neither is defined;
-- #endif
-- typedef int dummy;
-- ]])],
-- [ac_cv_c_bigendian=universal])],
-- [AC_DIAGNOSE([obsolete], [AC_C_BIGENDIAN suggests AC_CONFIG_HEADERS])])
-- if test $ac_cv_c_bigendian = unknown; then
-- # See if sys/param.h defines the BYTE_ORDER macro.
-- AC_COMPILE_IFELSE(
-- [AC_LANG_PROGRAM(
-- [[#include <sys/types.h>
-- #include <sys/param.h>
-- ]],
-- [[#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \
-- && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \
-- && LITTLE_ENDIAN)
-- bogus endian macros
-- #endif
-- ]])],
-- [# It does; now see whether it defined to BIG_ENDIAN or not.
-- AC_COMPILE_IFELSE(
-- [AC_LANG_PROGRAM(
-- [[#include <sys/types.h>
-- #include <sys/param.h>
-- ]],
-- [[#if BYTE_ORDER != BIG_ENDIAN
-- not big endian
-- #endif
-- ]])],
-- [ac_cv_c_bigendian=yes],
-- [ac_cv_c_bigendian=no])])
-- fi
-- if test $ac_cv_c_bigendian = unknown; then
-- # See if <limits.h> defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris).
-- AC_COMPILE_IFELSE(
-- [AC_LANG_PROGRAM(
-- [[#include <limits.h>
-- ]],
-- [[#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN)
-- bogus endian macros
-- #endif
-- ]])],
-- [# It does; now see whether it defined to _BIG_ENDIAN or not.
-- AC_COMPILE_IFELSE(
-- [AC_LANG_PROGRAM(
-- [[#include <limits.h>
-- ]],
-- [[#ifndef _BIG_ENDIAN
-- not big endian
-- #endif
-- ]])],
-- [ac_cv_c_bigendian=yes],
-- [ac_cv_c_bigendian=no])])
-- fi
-- if test $ac_cv_c_bigendian = unknown; then
-- # Compile a test program.
-- AC_RUN_IFELSE(
-- [AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
-- [[
-- /* Are we little or big endian? From Harbison&Steele. */
-- union
-- {
-- long int l;
-- char c[sizeof (long int)];
-- } u;
-- u.l = 1;
-- return u.c[sizeof (long int) - 1] == 1;
-- ]])],
-- [ac_cv_c_bigendian=no],
-- [ac_cv_c_bigendian=yes],
-- [# Try to guess by grepping values from an object file.
-- AC_COMPILE_IFELSE(
-- [AC_LANG_PROGRAM(
-- [[short int ascii_mm[] =
-- { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
-- short int ascii_ii[] =
-- { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
-- int use_ascii (int i) {
-- return ascii_mm[i] + ascii_ii[i];
-- }
-- short int ebcdic_ii[] =
-- { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
-- short int ebcdic_mm[] =
-- { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
-- int use_ebcdic (int i) {
-- return ebcdic_mm[i] + ebcdic_ii[i];
-- }
-- extern int foo;
-- ]],
-- [[return use_ascii (foo) == use_ebcdic (foo);]])],
-- [if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then
-- ac_cv_c_bigendian=yes
-- fi
-- if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
-- if test "$ac_cv_c_bigendian" = unknown; then
-- ac_cv_c_bigendian=no
-- else
-- # finding both strings is unlikely to happen, but who knows?
-- ac_cv_c_bigendian=unknown
-- fi
-- fi])])
-- fi])
-- case $ac_cv_c_bigendian in #(
-- yes)
-- m4_default([$1],
-- [AC_DEFINE([WORDS_BIGENDIAN], 1)]);; #(
-- no)
-- $2 ;; #(
-- universal)
-- $4 ;; #(
-- *)
-- m4_default([$3],
-- [AC_MSG_ERROR([unknown endianness
-- presetting ac_cv_c_bigendian=no (or yes) will help])]) ;;
-- esac
-+[AC_CACHE_CHECK(whether byte ordering is bigendian, ac_cv_c_bigendian,
-+[# See if sys/param.h defines the BYTE_ORDER macro.
-+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
-+#include <sys/param.h>
-+],
-+[#if ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN \
-+ && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN)
-+ bogus endian macros
-+#endif
-+])],
-+[# It does; now see whether it defined to BIG_ENDIAN or not.
-+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
-+#include <sys/param.h>
-+], [#if BYTE_ORDER != BIG_ENDIAN
-+ not big endian
-+#endif
-+])], [ac_cv_c_bigendian=yes], [ac_cv_c_bigendian=no])],
-+[# It does not; compile a test program.
-+AC_RUN_IFELSE(
-+[AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT], [[
-+ /* Are we little or big endian? From Harbison&Steele. */
-+ union
-+ {
-+ long int l;
-+ char c[sizeof (long int)];
-+ } u;
-+ u.l = 1;
-+ return u.c[sizeof (long int) - 1] == 1;
-+]])],
-+ [ac_cv_c_bigendian=no],
-+ [ac_cv_c_bigendian=yes],
-+[# try to guess the endianness by grepping values into an object file
-+ ac_cv_c_bigendian=unknown
-+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
-+[[short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
-+short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
-+void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; }
-+short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
-+short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
-+void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; }]],
-+[[ _ascii (); _ebcdic (); ]])],
-+[if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
-+ ac_cv_c_bigendian=yes
-+fi
-+if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
-+ if test "$ac_cv_c_bigendian" = unknown; then
-+ ac_cv_c_bigendian=no
-+ else
-+ # finding both strings is unlikely to happen, but who knows?
-+ ac_cv_c_bigendian=unknown
-+ fi
-+fi])])])])
-+case $ac_cv_c_bigendian in
-+ yes)
-+ m4_default([$1],
-+ [AC_DEFINE([WORDS_BIGENDIAN], 1,
-+ [Define to 1 if your processor stores words with the most significant
-+ byte first (like Motorola and SPARC, unlike Intel and VAX).])]) ;;
-+ no)
-+ $2 ;;
-+ *)
-+ m4_default([$3],
-+ [AC_MSG_ERROR([unknown endianness
-+presetting ac_cv_c_bigendian=no (or yes) will help])]) ;;
-+esac
- ])# AC_C_BIGENDIAN
-
-
diff --git a/sys-devel/autoconf/files/autoconf-2.63-sh.patch b/sys-devel/autoconf/files/autoconf-2.63-sh.patch
deleted file mode 100644
index 8008b32b6022..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.63-sh.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-http://bugs.gentoo.org/264303
-http://lists.gnu.org/archive/html/bug-autoconf/2008-10/msg00040.html
-
-From: Chikama Masaki <masaki.chikama@gmail.com>
-Date: Fri, 24 Oct 2008 01:41:06 +0000 (-0600)
-Subject: For gfortran on sh, ignore -little.
-X-Git-Tag: v2.63b~206
-X-Git-Url: http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff_plain;h=3f38aad
-
-For gfortran on sh, ignore -little.
-
-* lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add -little to
-list of ignored arguments.
-* THANKS: Update.
-
-Signed-off-by: Eric Blake <ebb9@byu.net>
----
-
-diff --git a/lib/autoconf/fortran.m4 b/lib/autoconf/fortran.m4
-index 20d9e0c..ad0c2ee 100644
---- a/lib/autoconf/fortran.m4
-+++ b/lib/autoconf/fortran.m4
-@@ -686,7 +686,8 @@ while test $[@%:@] != 1; do
- [_AC_LINKER_OPTION([$ac_arg], ac_cv_[]_AC_LANG_ABBREV[]_libs)])
- ;;
- # Ignore these flags.
-- -lang* | -lcrt*.o | -lc | -lgcc* | -lSystem | -libmil | -LANG:=* | -LIST:* | -LNO:*)
-+ -lang* | -lcrt*.o | -lc | -lgcc* | -lSystem | -libmil | -little \
-+ |-LANG:=* | -LIST:* | -LNO:*)
- ;;
- -lkernel32)
- test x"$CYGWIN" != xyes && ac_cv_[]_AC_LANG_ABBREV[]_libs="$ac_cv_[]_AC_LANG_ABBREV[]_libs $ac_arg"
diff --git a/sys-devel/autoconf/files/autoconf-2.65-AC_TYPE_INT_T.patch b/sys-devel/autoconf/files/autoconf-2.65-AC_TYPE_INT_T.patch
deleted file mode 100644
index cc81672e427e..000000000000
--- a/sys-devel/autoconf/files/autoconf-2.65-AC_TYPE_INT_T.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-https://bugs.gentoo.org/324649
-http://lists.gnu.org/archive/html/bug-autoconf/2009-12/msg00016.html
-
-From 83ee5bc460a1083ab29fd9d3a3044cbaefad6ac6 Mon Sep 17 00:00:00 2001
-From: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
-Date: Wed, 9 Dec 2009 07:20:16 +0100
-Subject: [PATCH] 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 <Ralf.Wildenhues@gmx.de>
----
- ChangeLog | 8 ++++++++
- NEWS | 3 +++
- THANKS | 1 +
- lib/autoconf/types.m4 | 12 ++++++------
- 4 files changed, 18 insertions(+), 6 deletions(-)
-
-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],
---
-1.7.1
-