summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--intl/bindtextdom.c8
-rw-r--r--intl/dcigettext.c10
-rw-r--r--intl/textdomain.c8
4 files changed, 33 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b6441e6b0..b3418875cb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-09-18 Bruno Haible <haible@clisp.cons.org>
+
+ * intl/dcigettext.c: Outside libc, use local variable names that don't
+ clash with those in libc.
+ * intl/bindtextdom.c: Likewise.
+ * intl/textdomain.c: Likewise.
+
2000-09-28 Ulrich Drepper <drepper@redhat.com>
* elf/ldconfig.c (parse_conf): Print full name of config dir
diff --git a/intl/bindtextdom.c b/intl/bindtextdom.c
index 4ea368da00..7de81c6cb5 100644
--- a/intl/bindtextdom.c
+++ b/intl/bindtextdom.c
@@ -57,6 +57,14 @@ void free ();
# define __libc_rwlock_unlock(NAME)
#endif
+/* The internal variables in the standalone libintl.a must have different
+ names than the internal variables in GNU libc, otherwise programs
+ using libintl.a cannot be linked statically. */
+#if !defined _LIBC
+# define _nl_default_dirname _nl_default_dirname__
+# define _nl_domain_bindings _nl_domain_bindings__
+#endif
+
/* @@ end of prolog @@ */
/* Contains the default location of the message catalogs. */
diff --git a/intl/dcigettext.c b/intl/dcigettext.c
index e431e4260f..7d7081dbe8 100644
--- a/intl/dcigettext.c
+++ b/intl/dcigettext.c
@@ -119,6 +119,16 @@ void free ();
((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2)
#endif
+/* The internal variables in the standalone libintl.a must have different
+ names than the internal variables in GNU libc, otherwise programs
+ using libintl.a cannot be linked statically. */
+#if !defined _LIBC
+# define _nl_default_default_domain _nl_default_default_domain__
+# define _nl_current_default_domain _nl_current_default_domain__
+# define _nl_default_dirname _nl_default_dirname__
+# define _nl_domain_bindings _nl_domain_bindings__
+#endif
+
/* @@ end of prolog @@ */
#ifdef _LIBC
diff --git a/intl/textdomain.c b/intl/textdomain.c
index 2a4b67c564..fe9f171815 100644
--- a/intl/textdomain.c
+++ b/intl/textdomain.c
@@ -51,6 +51,14 @@
# define __libc_rwlock_unlock(NAME)
#endif
+/* The internal variables in the standalone libintl.a must have different
+ names than the internal variables in GNU libc, otherwise programs
+ using libintl.a cannot be linked statically. */
+#if !defined _LIBC
+# define _nl_default_default_domain _nl_default_default_domain__
+# define _nl_current_default_domain _nl_current_default_domain__
+#endif
+
/* @@ end of prolog @@ */
/* Name of the default text domain. */