diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-10-04 22:45:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-10-04 22:45:25 +0000 |
commit | 883ba31595b0b4660756c80befc0b5fe52f42a6d (patch) | |
tree | 35bcd658caf64557770c23b1950bbb41e98a482c /argp/argp-parse.c | |
parent | d5fd1f3fd88443b9f380fb576a6e7bf039fdf6b6 (diff) | |
download | glibc-883ba31595b0b4660756c80befc0b5fe52f42a6d.tar.gz |
Update.
2000-10-04 Ulrich Drepper <drepper@redhat.com>
* argp/argp-help.c: Make sure we get the correct gettext and
dgettext definitions.
* argp/argp-parse.c: Likewise.
Diffstat (limited to 'argp/argp-parse.c')
-rw-r--r-- | argp/argp-parse.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/argp/argp-parse.c b/argp/argp-parse.c index 0ff8a5bc23..e54497cf5e 100644 --- a/argp/argp-parse.c +++ b/argp/argp-parse.c @@ -31,13 +31,15 @@ #ifndef _ /* This is for other GNU distributions with internationalized messages. When compiling libc, the _ macro is predefined. */ -#ifdef HAVE_LIBINTL_H -# include <libintl.h> -#else -# define dgettext(domain, msgid) (msgid) -# define gettext(msgid) (msgid) +# if defined HAVE_LIBINTL_H || defined _LIBC +# include <libintl.h> +# else +# define dgettext(domain, msgid) (msgid) +# define gettext(msgid) (msgid) +# endif #endif -#define N_(msgid) (msgid) +#ifndef N_ +# define N_(msgid) (msgid) #endif #if _LIBC - 0 |