]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Rename libgnuintl.h.in to libgnuintl.in.h.
authorBruno Haible <bruno@clisp.org>
Sun, 7 Nov 2010 12:51:09 +0000 (13:51 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 7 Jun 2011 21:38:48 +0000 (23:38 +0200)
gettext-runtime/intl/ChangeLog
gettext-runtime/intl/Makefile.in
gettext-runtime/intl/libgnuintl.in.h [moved from gettext-runtime/intl/libgnuintl.h.in with 100% similarity]
gettext-runtime/intl/printf.c

index 728f3856009ea279f6de2b2e54950e234b29acf3..d021ef51ab3c5fd2e35fb64da315c7c23bac8d94 100644 (file)
@@ -1,3 +1,10 @@
+2010-11-07  Bruno Haible  <bruno@clisp.org>
+
+       Rename libgnuintl.h.in to libgnuintl.in.h.
+       * libgnuintl.in.h: New file, renamed from libgnuintl.h.in.
+       * Makefile.in (HEADERS, libgnuintl.h, libintl.h): Update.
+       * printf.c: Update.
+
 2010-10-14  Bruno Haible  <bruno@clisp.org>
 
        vasnprintf: Don't set errno to 0.
index 2e53ccca0df17ebe1f47e61bc7584f860c334039..62ac4b7f446cec3986f74b8c8173659f0b866034 100644 (file)
@@ -130,7 +130,7 @@ HEADERS = \
   printf-parse.h wprintf-parse.h printf-parse.c \
   vasnprintf.h vasnwprintf.h vasnprintf.c \
   os2compat.h \
-  libgnuintl.h.in
+  libgnuintl.in.h
 SOURCES = \
   bindtextdom.c \
   dcgettext.c \
@@ -341,14 +341,14 @@ ref-del.sed: $(srcdir)/ref-del.sin
 
 INCLUDES = -I. -I$(srcdir) -I..
 
-libgnuintl.h: $(srcdir)/libgnuintl.h.in
+libgnuintl.h: $(srcdir)/libgnuintl.in.h
        sed -e '/IN_LIBGLOCALE/d' \
            -e 's,@''HAVE_POSIX_PRINTF''@,@HAVE_POSIX_PRINTF@,g' \
            -e 's,@''HAVE_ASPRINTF''@,@HAVE_ASPRINTF@,g' \
            -e 's,@''HAVE_NEWLOCALE''@,@HAVE_NEWLOCALE@,g' \
            -e 's,@''HAVE_SNPRINTF''@,@HAVE_SNPRINTF@,g' \
            -e 's,@''HAVE_WPRINTF''@,@HAVE_WPRINTF@,g' \
-         < $(srcdir)/libgnuintl.h.in \
+         < $(srcdir)/libgnuintl.in.h \
        | if test '@WOE32DLL@' = yes; then \
            sed -e 's/extern \([^()]*\);/extern __declspec (dllimport) \1;/'; \
          else \
@@ -359,14 +359,14 @@ libgnuintl.h: $(srcdir)/libgnuintl.h.in
        | sed -e 's,@''HAVE_VISIBILITY''@,@HAVE_VISIBILITY@,g' \
          > libgnuintl.h
 
-libintl.h: $(srcdir)/libgnuintl.h.in
+libintl.h: $(srcdir)/libgnuintl.in.h
        sed -e '/IN_LIBGLOCALE/d' \
            -e 's,@''HAVE_POSIX_PRINTF''@,@HAVE_POSIX_PRINTF@,g' \
            -e 's,@''HAVE_ASPRINTF''@,@HAVE_ASPRINTF@,g' \
            -e 's,@''HAVE_NEWLOCALE''@,@HAVE_NEWLOCALE@,g' \
            -e 's,@''HAVE_SNPRINTF''@,@HAVE_SNPRINTF@,g' \
            -e 's,@''HAVE_WPRINTF''@,@HAVE_WPRINTF@,g' \
-         < $(srcdir)/libgnuintl.h.in > libintl.h
+         < $(srcdir)/libgnuintl.in.h > libintl.h
 
 charset.alias: $(srcdir)/config.charset
        $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
index b7cdc5d82a0f7a865886db4305c6d9d9f70aed67..e86245d5a14d8a7f095df58435d6ac6f6feb994e 100644 (file)
@@ -1,5 +1,5 @@
 /* Formatted output to strings, using POSIX/XSI format strings with positions.
-   Copyright (C) 2003, 2006-2007, 2009 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2006-2007, 2009-2010 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2003.
 
    This program is free software; you can redistribute it and/or modify it
@@ -70,7 +70,7 @@ char *alloca ();
 
 #define STATIC static
 
-/* This needs to be consistent with libgnuintl.h.in.  */
+/* This needs to be consistent with libgnuintl.in.h.  */
 #if defined __NetBSD__ || defined __BEOS__ || defined __CYGWIN__ || defined __MINGW32__
 /* Don't break __attribute__((format(printf,M,N))).
    This redefinition is only possible because the libc in NetBSD, Cygwin,