2018-08-03 02:53:34 +08:00
|
|
|
2018-08-02 Simon Marchi <simon.marchi@ericsson.com>
|
|
|
|
|
|
|
|
* libgnuintl.h (_INTL_MAY_RETURN_STRING_ARG, gettext, dgettext,
|
|
|
|
dcgettext, ngettext, dngettext, dcngettext): Backport changes
|
|
|
|
from upstream gettext.
|
|
|
|
|
Bump to autoconf 2.69 and automake 1.15.1
When trying to run the update-gnulib.sh script in gdb, I get this:
Error: Wrong automake version (Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ =:+{}]+)}/ at /opt/automake/1.11.1/bin/automake line 4113.), we need 1.11.1.
Aborting.
Apparently, it's an issue with a regex in automake that triggers a
warning starting with Perl 5.22. It has been fixed in automake 1.15.1.
So I think it's a good excuse to bump the versions of autoconf and
automake used in the gnulib import. And to avoid requiring multiple
builds of autoconf/automake, it was suggested that we bump the required
version of those tools for all binutils-gdb.
For autoconf, the 2.69 version is universally available, so it's an easy
choice. For automake, different distros and distro versions have
different automake versions. But 1.15.1 seems to be the most readily
available as a package. In any case, it's easy to build it from source.
I removed the version checks from AUTOMAKE_OPTIONS and AC_PREREQ,
because I don't think they are useful in our case. They only specify a
lower bound for the acceptable version of automake/autoconf. That's
useful if you let the user choose the version of the tool they want to
use, but want to set a minimum version (because you use a feature that
was introduced in that version). In our case, we force people to use a
specific version anyway. For the autoconf version, we have the check in
config/override.m4 that enforces the version we want. It will be one
less thing to update next time we change autotools version.
I hit a few categories of problems that required some changes. They are
described below along with the chosen solutions.
Problem 1:
configure.ac:17: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:17: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
Solution 1:
Adjust the code based on the example at that URL.
Problem 2 (in zlib/):
Makefile.am: error: required file './INSTALL' not found
Makefile.am: 'automake --add-missing' can install 'INSTALL'
Makefile.am: error: required file './NEWS' not found
Makefile.am: error: required file './AUTHORS' not found
Makefile.am: error: required file './COPYING' not found
Makefile.am: 'automake --add-missing' can install 'COPYING'
Solution 2:
Add the foreign option to AUTOMAKE_OPTIONS.
Problem 3:
doc/Makefile.am:20: error: support for Cygnus-style trees has been removed
Solution 3:
Remove the cygnus options.
Problem 4:
Makefile.am:656: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
Solution 4:
Rename "INCLUDES = " to "AM_CPPFLAGS += " (because AM_CPPFLAGS is
already defined earlier).
Problem 5:
doc/Makefile.am:71: warning: suffix '.texinfo' for Texinfo files is discouraged; use '.texi' instead
doc/Makefile.am: warning: Oops!
doc/Makefile.am: It appears this file (or files included by it) are triggering
doc/Makefile.am: an undocumented, soon-to-be-removed automake hack.
doc/Makefile.am: Future automake versions will no longer place in the builddir
doc/Makefile.am: (rather than in the srcdir) the generated '.info' files that
doc/Makefile.am: appear to be cleaned, by e.g. being listed in CLEANFILES or
doc/Makefile.am: DISTCLEANFILES.
doc/Makefile.am: If you want your '.info' files to be placed in the builddir
doc/Makefile.am: rather than in the srcdir, you have to use the shiny new
doc/Makefile.am: 'info-in-builddir' automake option.
Solution 5:
Rename .texinfo files to .texi.
Problem 6:
doc/Makefile.am: warning: Oops!
doc/Makefile.am: It appears this file (or files included by it) are triggering
doc/Makefile.am: an undocumented, soon-to-be-removed automake hack.
doc/Makefile.am: Future automake versions will no longer place in the builddir
doc/Makefile.am: (rather than in the srcdir) the generated '.info' files that
doc/Makefile.am: appear to be cleaned, by e.g. being listed in CLEANFILES or
doc/Makefile.am: DISTCLEANFILES.
doc/Makefile.am: If you want your '.info' files to be placed in the builddir
doc/Makefile.am: rather than in the srcdir, you have to use the shiny new
doc/Makefile.am: 'info-in-builddir' automake option.
Solution 6:
Remove the hack at the bottom of doc/Makefile.am and use
the info-in-builddir automake option.
Problem 7:
doc/Makefile.am:35: error: required file '../texinfo.tex' not found
doc/Makefile.am:35: 'automake --add-missing' can install 'texinfo.tex'
Solution 7:
Use the no-texinfo.tex automake option. We also have one in
texinfo/texinfo.tex, not sure if we should point to that, or move it
(or a newer version of it added with automake --add-missing) to
top-level.
Problem 8:
Makefile.am:131: warning: source file 'config/tc-aarch64.c' is in a subdirectory,
Makefile.am:131: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled. For now, the corresponding output
automake: object file(s) will be placed in the top-level directory. However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
Solution 8:
Use subdir-objects, that means adjusting references to some .o that will now
be in config/.
Problem 9:
configure.ac:375: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from...
../../lib/autoconf/general.m4:2601: _AC_COMPILE_IFELSE is expanded from...
../../lib/autoconf/general.m4:2617: AC_COMPILE_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from...
../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from...
configure.ac:375: the top level
Solution 9:
Use AC_LANG_SOURCE, or use proper quoting.
Problem 10 (in intl/):
configure.ac:7: warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS
/usr/share/aclocal/threadlib.m4:36: gl_THREADLIB_EARLY_BODY is expanded from...
/usr/share/aclocal/threadlib.m4:29: gl_THREADLIB_EARLY is expanded from...
/usr/share/aclocal/threadlib.m4:318: gl_THREADLIB is expanded from...
/usr/share/aclocal/lock.m4:9: gl_LOCK is expanded from...
/usr/share/aclocal/intl.m4:211: gt_INTL_SUBDIR_CORE is expanded from...
/usr/share/aclocal/intl.m4:25: AM_INTL_SUBDIR is expanded from...
/usr/share/aclocal/gettext.m4:57: AM_GNU_GETTEXT is expanded from...
configure.ac:7: the top level
Solution 10:
Add AC_USE_SYSTEM_EXTENSIONS in configure.ac.
ChangeLog:
* libtool.m4: Use AC_LANG_SOURCE.
* configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
* README-maintainer-mode: Update version requirements.
* ar-lib: New file.
* test-driver: New file.
* configure: Re-generate.
bfd/ChangeLog:
* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11.
(INCLUDES): Rename to ...
(AM_CPPFLAGS): ... this.
* configure.ac: Remove AC_PREREQ.
* doc/Makefile.am (AUTOMAKE_OPTIONS): Remove 1.9, cygnus, add
info-in-builddir no-texinfo.tex.
(info_TEXINFOS): Rename bfd.texinfo to bfd.texi.
* doc/bfd.texinfo: Rename to ...
* doc/bfd.texi: ... this.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* config.in: Re-generate.
* configure: Re-generate.
* doc/Makefile.in: Re-generate.
binutils/ChangeLog:
* configure.ac: Remove AC_PREREQ.
* doc/Makefile.am (AUTOMAKE_OPTIONS): Remove cygnus, add
info-in-builddir no-texinfo.tex.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* config.in: Re-generate.
* configure: Re-generate.
* doc/Makefile.in: Re-generate.
config/ChangeLog:
* override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69.
etc/ChangeLog:
* configure.in: Remove AC_PREREQ.
* configure: Re-generate.
gas/ChangeLog:
* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11, add subdir-objects.
(TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O): Add config/ prefix.
* configure.ac (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O, emfiles,
extra_objects): Add config/ prefix.
* doc/as.texinfo: Rename to...
* doc/as.texi: ... this.
* doc/Makefile.am: Rename as.texinfo to as.texi throughout.
Remove DISTCLEANFILES hack.
(AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add no-texinfo.tex and
info-in-builddir.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* config.in: Re-generate.
* configure: Re-generate.
* doc/Makefile.in: Re-generate.
gdb/ChangeLog:
* common/common-defs.h (PACKAGE_NAME, PACKAGE_VERSION,
PACKAGE_STRING, PACKAGE_TARNAME): Undefine.
* configure.ac: Remove AC_PREREQ, add missing quoting.
* gnulib/configure.ac: Modernize usage of
AC_INIT/AM_INIT_AUTOMAKE. Remove AC_PREREQ.
* gnulib/update-gnulib.sh (AUTOCONF_VERSION): Bump to 2.69.
(AUTOMAKE_VERSION): Bump to 1.15.1.
* configure: Re-generate.
* config.in: Re-generate.
* aclocal.m4: Re-generate.
* gnulib/aclocal.m4: Re-generate.
* gnulib/config.in: Re-generate.
* gnulib/configure: Re-generate.
* gnulib/import/Makefile.in: Re-generate.
gdb/gdbserver/ChangeLog:
* configure.ac: Remove AC_PREREQ, add missing quoting.
* configure: Re-generate.
* config.in: Re-generate.
* aclocal.m4: Re-generate.
gdb/testsuite/ChangeLog:
* configure.ac: Remove AC_PREREQ.
* configure: Re-generate.
gold/ChangeLog:
* configure.ac: Remove AC_PREREQ, add missing quoting and usage
of AC_LANG_SOURCE.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* configure: Re-generate.
* testsuite/Makefile.in: Re-generate.
gprof/ChangeLog:
* configure.ac: Remove AC_PREREQ.
* Makefile.am: Remove DISTCLEANFILES hack.
(AUTOMAKE_OPTIONS): Remove 1.11, add info-in-builddir.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* configure: Re-generate.
* gconfig.in: Re-generate.
intl/ChangeLog:
* configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ.
* configure: Re-generate.
* config.h.in: Re-generate.
* aclocal.m4: Re-generate.
ld/ChangeLog:
* configure.ac: Remove AC_PREREQ.
* Makefile.am: Remove DISTCLEANFILES hack, rename ld.texinfo to
ld.texi, ldint.texinfo to ldint.texi throughout.
(AUTOMAKE_OPTIONS): Add info-in-builddir.
* README: Rename ld.texinfo to ld.texi, ldint.texinfo to
ldint.texi throughout.
* gen-doc.texi: Likewise.
* h8-doc.texi: Likewise.
* ld.texinfo: Rename to ...
* ld.texi: ... this.
* ldint.texinfo: Rename to ...
* ldint.texi: ... this.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* config.in: Re-generate.
* configure: Re-generate.
libdecnumber/ChangeLog:
* configure.ac: Remove AC_PREREQ.
* configure: Re-generate.
* aclocal.m4.
libiberty/ChangeLog:
* configure.ac: Remove AC_PREREQ.
* configure: Re-generate.
* config.in: Re-generate.
opcodes/ChangeLog:
* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11.
* configure.ac: Remove AC_PREREQ.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* configure: Re-generate.
readline/ChangeLog.gdb:
* configure: Re-generate.
* examples/rlfe/configure: Re-generate.
sim/ChangeLog:
* All configure.ac: Remove AC_PREREQ.
* All configure: Re-generate.
zlib/ChangeLog.bin-gdb:
* configure.ac: Modernize AC_INIT call, remove AC_PREREQ.
* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add
foreign.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* configure: Re-generate.
2018-06-20 04:54:48 +08:00
|
|
|
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
|
|
|
|
|
|
|
|
* configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ.
|
|
|
|
* configure: Re-generate.
|
|
|
|
* config.h.in: Re-generate.
|
|
|
|
* aclocal.m4: Re-generate.
|
|
|
|
|
2017-11-06 19:00:12 +08:00
|
|
|
2017-11-07 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
* configure.ac: Invole AM_GNU_GETTEXT with need_ngettext.
|
|
|
|
* configure: Regenerate.
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
|
2015-08-31 11:23:36 +08:00
|
|
|
2015-08-31 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
2015-08-07 06:35:26 +08:00
|
|
|
2010-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
2010-09-28 05:01:18 +08:00
|
|
|
2010-06-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
2010-09-28 04:23:01 +08:00
|
|
|
|
2010-09-28 05:01:18 +08:00
|
|
|
PR bootstrap/44621
|
2010-09-28 04:23:01 +08:00
|
|
|
* configure: Regenerate.
|
|
|
|
|
2010-04-06 02:02:22 +08:00
|
|
|
2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
|
2009-10-15 17:41:35 +08:00
|
|
|
2009-10-15 Jim Blandy <jimb@red-bean.com>
|
|
|
|
|
|
|
|
* libgnuintl.h (_INTL_MAY_RETURN_STRING_ARG, gettext, dgettext)
|
|
|
|
(dcgettext, ngettext, dngettext, dcngettext): Backport changes
|
|
|
|
from current gettext to provide GCC format_arg attributes.
|
|
|
|
|
2009-08-25 03:12:57 +08:00
|
|
|
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
* configure.ac (AC_PREREQ): Bump to 2.64.
|
|
|
|
|
2009-08-22 22:31:16 +08:00
|
|
|
2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
* configure: Regenerate.
|
|
|
|
* config.h.in: Regenerate.
|
|
|
|
|
intl/
* Makefile.in (aclocal_deps): New variable.
($(srcdir)/aclocal.m4): Use it, for portable makefile syntax.
libdecnumber/
* Makefile.in (aclocal_deps): New variable.
($(srcdir)/aclocal.m4): Use it, for portable makefile syntax.
etc/
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure, config.status): New rules.
(Makefile): Depend on config.status.
* configure.in: Accept --enable-maintainer-mode, set and
substitute MAINT accordingly.
gdb/
* Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, aclocal_m4_deps)
(AUTOCONF, configure_deps, AUTOHEADER): New variables.
($(srcdir)/aclocal.m4, $(srcdir)/configure, $(srcdir)/config.in)
(am--refresh): New rules.
(stamp-h, config.status): List config.in and configure including
$(srcdir)/ prefix.
* aclocal.m4: Regenerate.
* configure: Regenerate.
2009-07-31 06:44:50 +08:00
|
|
|
2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
* Makefile.in (aclocal_deps): New variable.
|
|
|
|
($(srcdir)/aclocal.m4): Use it, for portable makefile syntax.
|
|
|
|
|
2008-06-18 11:36:03 +08:00
|
|
|
2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
2008-06-17 02:15:49 +08:00
|
|
|
2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
* Makefile.in (datarootdir): New variable.
|
|
|
|
|
2008-04-18 23:14:13 +08:00
|
|
|
2008-04-18 Paolo Bonzini <bonzini@gnu.org>
|
|
|
|
|
|
|
|
PR bootstrap/35457
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
2008-03-18 06:17:33 +08:00
|
|
|
2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
* configure: Likewise.
|
|
|
|
|
2006-09-27 23:03:38 +08:00
|
|
|
2006-09-27 Alan Modra <amodra@bigpond.net.au>
|
|
|
|
|
|
|
|
* Makefile.in (distclean): Delete config files.
|
|
|
|
|
2006-09-14 06:07:31 +08:00
|
|
|
2006-09-13 Eric Botcazou <ebotcazou@libertysurf.fr>
|
|
|
|
|
|
|
|
PR other/23541
|
|
|
|
PR other/26507
|
|
|
|
Backport from gettext repository:
|
|
|
|
|
|
|
|
2003-09-04 Bruno Haible <bruno@clisp.org>
|
|
|
|
* dgettext.c: Include <locale.h> after gettextP.h, not before. This
|
|
|
|
ensures that libintl_dcgettext is correctly declared on Solaris.
|
|
|
|
(Needed because Solaris <locale.h> includes libintl.h.)
|
|
|
|
* dngettext.c: Likewise, for the libintl_dcngettext declaration.
|
|
|
|
|
2006-06-07 23:43:36 +08:00
|
|
|
2006-06-07 Daniel Jacobowitz <dan@codesourcery.com>
|
|
|
|
|
|
|
|
* Makefile.in (install-info, install-dvi, install-ps, install-pdf):
|
|
|
|
New dummy targets.
|
|
|
|
|
2006-05-24 10:02:46 +08:00
|
|
|
2005-05-23 Carlos O'Donell <carlos@codesourcery.com>
|
|
|
|
|
|
|
|
* Makefile.in: Add info dvi ps pdf html install-html to .PHONY
|
|
|
|
Add install-html target.
|
|
|
|
|
2005-05-13 16:04:31 +08:00
|
|
|
2005-05-13 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
* Update the address and phone number of the FSF organization in
|
|
|
|
the GPL notices in the following files:
|
2006-05-22 23:30:13 +08:00
|
|
|
Makefile.in, bindtextdom.c, dcgettext.c, dcigettext.c,
|
|
|
|
dcngettext.c, dgettext.c, dngettext.c, eval-plural.h,
|
|
|
|
explodename.c, finddomain.c, gettext.c, gettextP.h, gmo.h,
|
|
|
|
hash-string.h, intl-compat.c, l10nflist.c, libgnuintl.h,
|
|
|
|
loadinfo.h, loadmsgcat.c, localcharset.c, localcharset.h,
|
|
|
|
locale.alias, localealias.c, localename.c, log.c, ngettext.c,
|
|
|
|
osdep.c, plural-exp.c, plural-exp.h, plural.c, plural.y,
|
|
|
|
relocatable.c, relocatable.h, textdomain.c
|
|
|
|
|
|
|
|
2004-11-24 Kelley Cook <kcook@gcc.gnu.org>
|
|
|
|
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
|
|
|
|
2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
|
|
|
|
|
|
|
|
* Makefile.in (config.h.in): Correct dependencies.
|
|
|
|
(stamp-h1): Likewise.
|
|
|
|
(config.intl): Likewise.
|
|
|
|
|
|
|
|
2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
|
|
|
|
|
|
|
|
* configure.ac (AC_CONFIG_MACRO_DIR): New.
|
|
|
|
(ACLOCAL, AUTOCONF, AUTOHEADER, MAINT): Substitute.
|
|
|
|
* Makefile.in: Update with maintainer mode rules.
|
|
|
|
* README: Update aclocal regeneration instructions.
|
|
|
|
* aclocal.m4, configure: Regenerate.
|
|
|
|
|
|
|
|
2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
|
|
|
|
|
|
|
|
* .cvsignore: Ignore autom4te.cache
|
|
|
|
|
|
|
|
2004-04-25 Paolo Bonzini <bonzini@gnu.org>
|
|
|
|
|
2015-07-24 19:08:12 +08:00
|
|
|
* configure.ac: Point config.intl to the parent directory of
|
|
|
|
${top_builddir}.
|
2006-05-22 23:30:13 +08:00
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
|
|
2004-03-10 Kelley Cook <kcook@gcc.gnu.org>
|
|
|
|
|
|
|
|
* configure.ac: Bump AC_PREREQ to 2.59.
|
|
|
|
* configure: Regenerate.
|
|
|
|
* config.h.in: Regenerate.
|
|
|
|
|
|
|
|
2004-02-29 Nathanael Nerode <neroden@gcc.gnu.org>
|
|
|
|
|
|
|
|
* configure.in: Convert to autoconf 2.57, gratuitous stylistic
|
|
|
|
cleanup, rename to configure.ac.
|
|
|
|
* configure.ac: Renamed from configure.in.
|
|
|
|
* config.h.in: Rebuilt with autoheader 2.57.
|
|
|
|
* configure: Rebuilt with autoconf 2.57
|
|
|
|
* README: Update to reflect rename of configure.in to configure.ac.
|
|
|
|
|
|
|
|
2003-07-07 Zack Weinberg <zack@codesourcery.com>
|
|
|
|
|
|
|
|
* README: Update.
|
|
|
|
* Makefile.in (INSTALL, INSTALL_DATA, MKINSTALLDIRS,
|
|
|
|
mkinstalldirs, gettextsrcdir, l): Delete.
|
|
|
|
(COMPILE): Add $(DEFS-$@), remove $(XCFLAGS).
|
|
|
|
(HEADERS): libgnuintl.h not libgnuintl.h.in. Remove os2compat.h.
|
|
|
|
(SOURCES): Remove os2compat.c.
|
|
|
|
(DEFS-dcigettext.o, DEFS-localealias.o, DEFS-localcharset.o,
|
|
|
|
DEFS-relocatable.o): New.
|
|
|
|
(all-yes): Add config.intl.
|
|
|
|
(libintl.h): Use cp, not cat.
|
|
|
|
(INCLUDES): Remove -I..
|
|
|
|
(TAGS, CTAGS, ID): Word wrap.
|
|
|
|
(mostlyclean, distclean): Remove junk.
|
|
|
|
(config.intl): New rule.
|
|
|
|
* aclocal.m4: sinclude ../config/progtest.m4 instead of
|
|
|
|
including it inline.
|
|
|
|
* config.intl.in: New file.
|
|
|
|
* configure.in: Take out unnecessary AC_CONFIG_AUX_DIR.
|
|
|
|
Take out AC_DEFINEs for LOCALEDIR, LOCALE_ALIAS_PATH,
|
|
|
|
LIBDIR, INSTALLDIR. Set LIBINTL_DEP and INCINTL and AC_SUBST
|
|
|
|
them. Add config.intl to AC_OUTPUT.
|
|
|
|
* os2compat.c, os2compat.h: Delete, unused.
|
|
|
|
|
|
|
|
2003-07-04 Zack Weinberg <zack@codesourcery.com>
|
|
|
|
|
|
|
|
* Makefile.in: Remove unnecessary capabilities for
|
|
|
|
installation, build of shared libraries, generation of
|
|
|
|
distribution tarballs, etc. Fix all the places that rely on
|
|
|
|
the parent directory. Don't generate libgnuintl.h from
|
|
|
|
anything; do generate $(objdir)/libintl.h from libgnuintl.h if
|
|
|
|
necessary. Adjust DEFS for use of config.h.
|
|
|
|
* libgnuintl.h.in: Rename libgnuintl.h.
|
|
|
|
* README: New file.
|
|
|
|
* config.charset, ref-add.sin, ref-del.sin: Delete (unused).
|
|
|
|
* COPYING.LIB-2.0, COPYING.LIB-2.1: Delete (redundant).
|
|
|
|
* aclocal.m4: New; generated per instructions in gettext manual.
|
|
|
|
* configure.in: New; written from scratch for this configuration.
|
|
|
|
* configure, config.h.in: Generated.
|
|
|
|
|
|
|
|
2003-05-22 GNU <bug-gnu-gettext@gnu.org>
|
|
|
|
|
|
|
|
* Version 0.12.1 released.
|
1999-05-03 15:29:11 +08:00
|
|
|
|