diff options
Diffstat (limited to 'libdecnumber')
-rw-r--r-- | libdecnumber/ChangeLog | 10 | ||||
-rw-r--r-- | libdecnumber/Makefile.in | 2 | ||||
-rw-r--r-- | libdecnumber/aclocal.m4 | 1 | ||||
-rwxr-xr-x | libdecnumber/configure | 21 |
4 files changed, 27 insertions, 7 deletions
diff --git a/libdecnumber/ChangeLog b/libdecnumber/ChangeLog index 8e8cf1ac0fa..91c4f08dcaa 100644 --- a/libdecnumber/ChangeLog +++ b/libdecnumber/ChangeLog @@ -1,3 +1,13 @@ +2008-04-18 Paolo Bonzini <bonzini@gnu.org> + + PR bootstrap/35457 + * aclocal.m4: Regenerate. + * configure: Regenerate. + +2008-04-18 Ben Elliston <bje@au.ibm.com> + + * Makefile.in (distclean): Add gstdint.h. + 2008-01-25 Janis Johnson <janis187@us.ibm.com> * decCommonSymbols.h: Commit. diff --git a/libdecnumber/Makefile.in b/libdecnumber/Makefile.in index 00b16b297dd..b17505902af 100644 --- a/libdecnumber/Makefile.in +++ b/libdecnumber/Makefile.in @@ -151,7 +151,7 @@ clean: mostlyclean distclean: clean -rm -f config.h stamp-h1 config.status config.cache config.log \ configure.lineno configure.status.lineno Makefile localedir.h \ - localedir.hs + localedir.hs gstdint.h maintainer-clean: distclean @echo "This command is intended for maintainers to use" diff --git a/libdecnumber/aclocal.m4 b/libdecnumber/aclocal.m4 index f52fa31a8fe..ded21173452 100644 --- a/libdecnumber/aclocal.m4 +++ b/libdecnumber/aclocal.m4 @@ -11,5 +11,6 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. +m4_include([../config/override.m4]) m4_include([../config/stdint.m4]) m4_include([../config/warnings.m4]) diff --git a/libdecnumber/configure b/libdecnumber/configure index 83c8e53be9c..6d5b1ef4287 100755 --- a/libdecnumber/configure +++ b/libdecnumber/configure @@ -1660,13 +1660,22 @@ echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: + ac_cache_corrupted=: + else + { echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 +echo "$as_me: former value: \`$ac_old_val'" >&2;} + { echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 +echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. |