+2009-05-21 Bruno Haible <bruno@clisp.org>
+
+ Assume automake >= 1.10.2.
+ * m4/fixautomake.m4 (FIX_MAKEFILE_COMPILE, FIX_MAKEFILE_INFO): Remove
+ macros.
+
2009-04-23 Bruno Haible <bruno@clisp.org>
Fix recognition of "nm" command.
+2009-05-21 Bruno Haible <bruno@clisp.org>
+
+ Assume automake >= 1.10.2.
+ * configure.ac (AC_CONFIG_FILES): Remove FIX_MAKEFILE_COMPILE
+ invocations.
+
2009-03-25 Bruno Haible <bruno@clisp.org>
Fix the handling of Windows resources in shared libraries.
AC_CONFIG_FILES([intl-csharp/Makefile])
-AC_CONFIG_FILES([gnulib-lib/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([gnulib-lib/Makefile])
-AC_CONFIG_FILES([src/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([src/gettext.sh], [chmod a+x src/gettext.sh])
AC_CONFIG_FILES([po/Makefile.in])
+2009-05-21 Bruno Haible <bruno@clisp.org>
+
+ Assume automake >= 1.10.2.
+ * configure.ac (AC_CONFIG_FILES): Remove FIX_MAKEFILE_COMPILE,
+ FIX_MAKEFILE_INFO invocations.
+
2009-04-26 Bruno Haible <bruno@clisp.org>
* vasnprintf.c (VASNPRINTF): Update after the calling convention of
AC_PATH_PROG([TEXI2PDF], [texi2pdf], [$ac_aux_dir_abs/missing texi2pdf])
AC_PATH_PROG([PERL], [perl], [$ac_aux_dir_abs/missing perl])
-AC_CONFIG_FILES([Makefile],
- [FIX_MAKEFILE_COMPILE
- FIX_MAKEFILE_INFO])
+AC_CONFIG_FILES([Makefile])
AC_OUTPUT
+2009-05-21 Bruno Haible <bruno@clisp.org>
+
+ Assume automake >= 1.10.2.
+ * configure.ac (AC_CONFIG_FILES): Remove FIX_MAKEFILE_COMPILE,
+ FIX_MAKEFILE_INFO invocations.
+
2009-04-11 Bruno Haible <bruno@clisp.org>
* configure.ac (gt_GLOBAL_SYMBOL_PIPE): Remove macro, moved to
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([doc/Makefile],
- [FIX_MAKEFILE_COMPILE
- FIX_MAKEFILE_DISTRIB
- FIX_MAKEFILE_INFO])
+ [FIX_MAKEFILE_DISTRIB])
AC_CONFIG_FILES([intl/Makefile:../gettext-runtime/intl/Makefile.in], [
# Change srcdir variable so that it points to ../gettext-runtime/intl.
mv intl/Makefile.tmp intl/Makefile
])
-AC_CONFIG_FILES([gnulib-lib/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([gnulib-lib/Makefile])
-AC_CONFIG_FILES([libgrep/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([libgrep/Makefile])
-AC_CONFIG_FILES([src/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([src/user-email:src/user-email.sh.in])
-AC_CONFIG_FILES([libgettextpo/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([libgettextpo/Makefile])
AC_CONFIG_FILES([libgettextpo/exported.sh])
AC_CONFIG_FILES([po/Makefile.in])
AC_CONFIG_FILES([m4/Makefile])
-AC_CONFIG_FILES([tests/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([tests/Makefile])
-AC_CONFIG_FILES([gnulib-tests/Makefile],
- [FIX_MAKEFILE_COMPILE])
+AC_CONFIG_FILES([gnulib-tests/Makefile])
AC_OUTPUT
-# fixautomake.m4 serial 6 (gettext-0.16)
-dnl Copyright (C) 2002-2003, 2006 Free Software Foundation, Inc.
+# fixautomake.m4 serial 7 (gettext-0.18)
+dnl Copyright (C) 2002-2003, 2006, 2009 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl From Bruno Haible
-dnl Fix unesthetic build commands generated by automake.
-AC_DEFUN([FIX_MAKEFILE_COMPILE], [
- sed -e "s,\`test -f \\\$< || echo '\\\$(srcdir)/'\`\\\$<,\\\$<," -e "s,\`test -f '\\\$<' || echo '\\\$(srcdir)/'\`\\\$<,\\\$<," < $ac_file > $ac_file.tmp
- mv $ac_file.tmp $ac_file
-])
-
-dnl Fix an automake-1.5-1.7.2 bug: the distrib rule is omitted.
+dnl Fix an automake-1.5-1.10.2 bug: the distrib rule is omitted.
AC_DEFUN([FIX_MAKEFILE_DISTRIB], [
sed -e 's,^#distdir:,distdir:,' < $ac_file > $ac_file.tmp
mv $ac_file.tmp $ac_file
])
-dnl Fix an automake-1.9-1.10 bug: the distrib rule is not extensible.
+dnl Fix an automake-1.9-1.10.2 bug: the distrib rule is not extensible.
dnl Insert a invocation of the distdir1 target inside the distdir commands,
dnl after $(distdir) has been erased and re-created.
AC_DEFUN([FIX_MAKEFILE_TOPDIR_DISTRIB], [
sed -e "$sed_script" < $ac_file > $ac_file.tmp
mv $ac_file.tmp $ac_file
])
-
-dnl Fix an automake-1.5-1.7.2 bug: all info files are erased by "make".
-AC_DEFUN([FIX_MAKEFILE_INFO], [
- sed -e '/@rm -f \$''@/d' < $ac_file > $ac_file.tmp
- mv $ac_file.tmp $ac_file
-])