From 4fbd67668e93f3402e4894cd25354c27961a09de Mon Sep 17 00:00:00 2001 From: Ben Key Date: Sat, 7 Dec 2002 05:22:27 +0000 Subject: [PATCH] Fixed the build error in getopt.c that occured on systems lacking a gettext implementation. Thanks go to Andrew Choi [akochoi@shaw.ca] for this one. --- lib-src/getopt.c | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/lib-src/getopt.c b/lib-src/getopt.c index c75627f84ba..72fc012f8d9 100644 --- a/lib-src/getopt.c +++ b/lib-src/getopt.c @@ -76,14 +76,20 @@ #endif #if 0 -#ifdef _LIBC -# include -#else +# ifdef _LIBC +# include +# else /* not #ifdef _LIBC */ /* This is for other GNU distributions with internationalized messages. */ -# include "gettext.h" -#endif -#endif -#define _(msgid) gettext (msgid) +# include "gettext.h" +# endif /* end #ifdef _LIBC */ +#endif /* end #if 0 */ + +#if HAVE_LIBINTL_H || defined _LIBC + /* Should I include libintl.h here as in regex.c ? */ +# define _(msgid) gettext (msgid) +#else /* not #if HAVE_LIBINTL_H || defined _LIBC */ +# define _(msgid) (msgid) +#endif /* end #if HAVE_LIBINTL_H || defined _LIBC */ #if defined _LIBC && defined USE_IN_LIBIO # include -- 2.39.2