1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

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.

This commit is contained in:
Ben Key 2002-12-07 05:22:27 +00:00
parent 730a652d2f
commit 4fbd67668e

View File

@ -76,14 +76,20 @@
#endif
#if 0
#ifdef _LIBC
# include <libintl.h>
#else
# ifdef _LIBC
# include <libintl.h>
# 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 <wchar.h>