diff options
author | Bruno Haible <bruno@clisp.org> | 2004-01-17 13:43:20 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:39 +0200 |
commit | 058aa940083e61aaedf204935314a61d5b5249db (patch) | |
tree | 945f3cf0542658d081a7d6dc1f621ea033d0a825 /gettext-tools/examples/hello-c++-gnome | |
parent | b91f9dec585a1ab599886cb5187fd2f849f0baa1 (diff) | |
download | external_gettext-058aa940083e61aaedf204935314a61d5b5249db.zip external_gettext-058aa940083e61aaedf204935314a61d5b5249db.tar.gz external_gettext-058aa940083e61aaedf204935314a61d5b5249db.tar.bz2 |
Use the macros from 0.13.1, not 0.12.1.
Diffstat (limited to 'gettext-tools/examples/hello-c++-gnome')
-rwxr-xr-x | gettext-tools/examples/hello-c++-gnome/autoclean.sh | 11 | ||||
-rw-r--r-- | gettext-tools/examples/hello-c++-gnome/configure.ac | 4 |
2 files changed, 12 insertions, 3 deletions
diff --git a/gettext-tools/examples/hello-c++-gnome/autoclean.sh b/gettext-tools/examples/hello-c++-gnome/autoclean.sh index 980bf44..e07c854 100755 --- a/gettext-tools/examples/hello-c++-gnome/autoclean.sh +++ b/gettext-tools/examples/hello-c++-gnome/autoclean.sh @@ -1,6 +1,6 @@ #!/bin/sh # Example for use of GNU gettext. -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003-2004 Free Software Foundation, Inc. # This file is in the public domain. # # Script for cleaning all autogenerated files. @@ -15,6 +15,7 @@ rm -f m4/gettext.m4 rm -f m4/glibc21.m4 rm -f m4/iconv.m4 rm -f m4/intdiv0.m4 +rm -f m4/intmax.m4 rm -f m4/inttypes-pri.m4 rm -f m4/inttypes.m4 rm -f m4/inttypes_h.m4 @@ -23,12 +24,20 @@ rm -f m4/lcmessage.m4 rm -f m4/lib-ld.m4 rm -f m4/lib-link.m4 rm -f m4/lib-prefix.m4 +rm -f m4/longdouble.m4 +rm -f m4/longlong.m4 rm -f m4/nls.m4 rm -f m4/po.m4 +rm -f m4/printf-posix.m4 rm -f m4/progtest.m4 +rm -f m4/signed.m4 +rm -f m4/size_max.m4 rm -f m4/stdint_h.m4 rm -f m4/uintmax_t.m4 rm -f m4/ulonglong.m4 +rm -f m4/wchar_t.m4 +rm -f m4/wint_t.m4 +rm -f m4/xsize.m4 rm -f mkinstalldirs rm -f po/Makefile.in.in rm -f po/remove-potcdate.sin diff --git a/gettext-tools/examples/hello-c++-gnome/configure.ac b/gettext-tools/examples/hello-c++-gnome/configure.ac index 9be237c..987b44a 100644 --- a/gettext-tools/examples/hello-c++-gnome/configure.ac +++ b/gettext-tools/examples/hello-c++-gnome/configure.ac @@ -1,5 +1,5 @@ dnl Example for use of GNU gettext. -dnl Copyright (C) 2003 Free Software Foundation, Inc. +dnl Copyright (C) 2003-2004 Free Software Foundation, Inc. dnl This file is in the public domain. dnl dnl Configuration file - processed by autoconf. @@ -18,7 +18,7 @@ AC_SUBST([GTKMM_LIBS]) AC_CHECK_HEADERS([unistd.h]) AM_GNU_GETTEXT([external]) -AM_GNU_GETTEXT_VERSION(0.12.1) +AM_GNU_GETTEXT_VERSION(0.13.1) AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([m4/Makefile]) |