intl.c (gcc_init_libintl): Use PACKAGE for the text domain.
authorMatthias Klose <doko@debian.org>
Fri, 23 Jul 2004 06:59:35 +0000 (06:59 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Fri, 23 Jul 2004 06:59:35 +0000 (06:59 +0000)
2004-07-23  Matthias Klose  <doko@debian.org>

        intl.c (gcc_init_libintl): Use PACKAGE for the text domain.
        configure.ac: Add AC_DEFINE_UNQUOTED for PACKAGE.
        config.h: Regenerate.
        configure: Likewise.

From-SVN: r85072

gcc/ChangeLog
gcc/config.in
gcc/configure
gcc/configure.ac
gcc/intl.c

index 7e08c3947d393893b90717e9fe8ab282bcdc001a..f039bce7d64834e1e197740c1b0aa71fe0ca2f0b 100644 (file)
@@ -1,3 +1,10 @@
+2004-07-23  Matthias Klose  <doko@debian.org> 
+       intl.c (gcc_init_libintl): Use PACKAGE for the text domain. 
+       configure.ac: Add AC_DEFINE_UNQUOTED for PACKAGE. 
+       config.h: Regenerate.
+       configure: Likewise. 
+
 2004-07-22  Mark Mitchell  <mark@codesourcery.com>
 
        * dwarf2out.c (output_call_frame_info): Set SYMBOL_FLAG_LOCAL on
index 2b213a2fdff3ccf5d62a9f7eab4526833fd36f22..387e70899dcd034634a5d3e692e4f7d5860afc8e 100644 (file)
 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
 #undef NO_MINUS_C_MINUS_O
 
+/* The name of this program for internationalization purposes. */
+#undef PACKAGE
+
 /* Define to the address where bug reports for this package should be sent. */
 #undef PACKAGE_BUGREPORT
 
index d30e786d9a1d7512d6770cdb8385d33235b4c673..f32b8af211f3f1ce407f142735c0dbf7394fa1c7 100755 (executable)
@@ -9387,6 +9387,11 @@ EOF
 PACKAGE=gcc
 VERSION="$gcc_version"
 
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE "$PACKAGE"
+_ACEOF
+
+
 
 
 # If we haven't got the data from the intl directory,
index d37db09edfceda141f051f71546110cfed06c2c1..bb6f7bf8513372e7da3fb88296957c3f34f2fe60 100644 (file)
@@ -1392,6 +1392,8 @@ changequote([,])dnl
 # Internationalization
 PACKAGE=gcc
 VERSION="$gcc_version"
+AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE",
+  [The name of this program for internationalization purposes.])
 AC_SUBST(PACKAGE)
 AC_SUBST(VERSION)
 
index e5aa941021fedf669bf8553bb9e6f82f317089b5..2b2a9f097328cf40c6ec09c17e9dba4eaa8b8c0d 100644 (file)
@@ -51,8 +51,8 @@ gcc_init_libintl (void)
   setlocale (LC_ALL, "");
 #endif
 
-  (void) bindtextdomain ("gcc", LOCALEDIR);
-  (void) textdomain ("gcc");
+  (void) bindtextdomain (PACKAGE, LOCALEDIR);
+  (void) textdomain (PACKAGE);
 
   /* Opening quotation mark.  */
   open_quote = _("`");