aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-05-13 13:05:36 +0000
committerAlan Modra <amodra@gmail.com>2000-05-13 13:05:36 +0000
commit897083bdcd3240fe6b53fa7e91d500277d0e5172 (patch)
treecb99239cf53a936cfe89d6c5ae2fba8c8aaf52e7 /binutils
parenta38cf1db3a1c32ca85b78a1c50001af4714c1066 (diff)
downloadfsf-binutils-gdb-897083bdcd3240fe6b53fa7e91d500277d0e5172.zip
fsf-binutils-gdb-897083bdcd3240fe6b53fa7e91d500277d0e5172.tar.gz
fsf-binutils-gdb-897083bdcd3240fe6b53fa7e91d500277d0e5172.tar.bz2
Quell some gcc warnings by defining textdomain and bindtextdomain
as intl/libgettext.h does.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog6
-rw-r--r--binutils/bucomm.h11
2 files changed, 11 insertions, 6 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 7505d56..530dbb0 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,9 @@
+2000-05-13 Alan Modra <alan@linuxcare.com.au>
+
+ * bucomm.h (gettext, dgettext, dcgettext, textdomain,
+ bindtextdomain): Replace defines with those from intl/libgettext.h
+ to quieten gcc warnings.
+
2000-05-12 H.J. Lu <hjl@gnu.org>
* nlmconv.c (temp_filename): Removed.
diff --git a/binutils/bucomm.h b/binutils/bucomm.h
index c6dc26a..e9d675e 100644
--- a/binutils/bucomm.h
+++ b/binutils/bucomm.h
@@ -138,12 +138,11 @@ void *alloca ();
# define N_(String) (String)
# endif
#else
-/* Stubs that do something close enough. */
-# define textdomain(String) (String)
-# define gettext(String) (String)
-# define dgettext(Domain,Message) (Message)
-# define dcgettext(Domain,Message,Type) (Message)
-# define bindtextdomain(Domain,Directory) (Domain)
+# define gettext(Msgid) (Msgid)
+# define dgettext(Domainname, Msgid) (Msgid)
+# define dcgettext(Domainname, Msgid, Category) (Msgid)
+# define textdomain(Domainname) while (0) /* nothing */
+# define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
# define _(String) (String)
# define N_(String) (String)
#endif