mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-19 14:40:24 +08:00
* tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
* bin/autoheader.in (%symbol): Strip arguments of macros.
This commit is contained in:
parent
db8481b543
commit
0e30eb6fc9
@ -1,3 +1,8 @@
|
||||
2001-08-31 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
|
||||
* bin/autoheader.in (%symbol): Strip arguments of macros.
|
||||
|
||||
2001-08-31 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* doc/autoconf.texi: Catch up -I, --include changes.
|
||||
|
@ -188,6 +188,10 @@ $config_h =~ s/ .*//;
|
||||
($config_h, $config_h_in) = split (':', $config_h, 2);
|
||||
$config_h_in ||= "$config_h.in";
|
||||
|
||||
# %SYMBOL might contain things like `F77_FUNC(name,NAME)', but we keep
|
||||
# only the name of the macro.
|
||||
%symbol = map { s/\(.*//; $_ => 1 } keys %symbol;
|
||||
|
||||
my $out = new IO::File (">$tmp/config.hin");
|
||||
|
||||
# Don't write "do not edit" -- it will get copied into the
|
||||
|
@ -354,7 +354,8 @@ _AT_CHECK_AC_MACRO(
|
||||
|
||||
# Make sure AC_C_BIGENDIAN with no argument will define WORDS_BIGENDIAN
|
||||
AT_CONFIGURE_AC([AC_C_BIGENDIAN])
|
||||
AT_CHECK_AUTOHEADER([], [], [], [autoheader: `config.hin' is updated])
|
||||
AT_CHECK_AUTOHEADER([], [], [], [autoheader: `config.hin' is updated
|
||||
])
|
||||
AT_CHECK([grep WORDS_BIGENDIAN config.hin], [], [ignore])
|
||||
|
||||
AT_CLEANUP(at-endian)
|
||||
|
Loading…
x
Reference in New Issue
Block a user