aboutsummaryrefslogtreecommitdiff
path: root/binutils/bucomm.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-09-30 11:42:05 +0000
committerNick Clifton <nickc@redhat.com>2005-09-30 11:42:05 +0000
commita70c240376fbfde088944325cc58a0e9edba6cc5 (patch)
tree7a7fc819d79f97c05d8089d9f8a4032877677c4c /binutils/bucomm.h
parent7fe2b9a6a674d57789207d7f14fb2f0573bcc8f5 (diff)
downloadgdb-a70c240376fbfde088944325cc58a0e9edba6cc5.zip
gdb-a70c240376fbfde088944325cc58a0e9edba6cc5.tar.gz
gdb-a70c240376fbfde088944325cc58a0e9edba6cc5.tar.bz2
asintl.h/bucomm.h/ld.h: Prevent the inclusion of <libintl.h> from the Solaris
version of <locale.h> when ENABLE_NLS is not defined. gprof.c (main):Only invoke bindtextdomain() and textdomain() if ENABLE_NLS is defined.
Diffstat (limited to 'binutils/bucomm.h')
-rw-r--r--binutils/bucomm.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/binutils/bucomm.h b/binutils/bucomm.h
index 0872e96..2c662c8 100644
--- a/binutils/bucomm.h
+++ b/binutils/bucomm.h
@@ -1,6 +1,6 @@
/* bucomm.h -- binutils common include file.
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
- 2001, 2002, 2003 Free Software Foundation, Inc.
+ 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
This file is part of GNU Binutils.
@@ -125,7 +125,17 @@ void *alloca ();
# endif /* HAVE_ALLOCA_H */
#endif
+
#ifdef HAVE_LOCALE_H
+# ifndef ENABLE_NLS
+ /* The Solaris version of locale.h always includes libintl.h. If we have
+ been configured with --disable-nls then ENABLE_NLS will not be defined
+ and the dummy definitions of bindtextdomain (et al) below will conflict
+ with the defintions in libintl.h. So we define these values to prevent
+ the bogus inclusion of libintl.h. */
+# define _LIBINTL_H
+# define _LIBGETTEXT_H
+# endif
# include <locale.h>
#endif