2000-12-04 Oliver Rauch <Oliver.Rauch@Wolfsburg.DE>

* removed usage of gettext, problem with -lintl should be solved:
          - removed usage of gettext from lib/getopt.c
          - removed test for libintl/gettext in configure[.in]                                                                     - removed intllib from frontend/Makfile.in
DEVEL_2_0_BRANCH-1
Oliver Rauch 2000-12-04 20:58:34 +00:00
rodzic df09dcb4c6
commit a6e24d3333
2 zmienionych plików z 2 dodań i 9 usunięć

Wyświetl plik

@ -33,7 +33,7 @@ DEFS = @DEFS@
CPPFLAGS = @CPPFLAGS@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @INTLLIBS@
LIBS =
LIBTOOL = ../libtool
MINST = --mode=install

Wyświetl plik

@ -76,14 +76,7 @@
#endif
#ifndef _
/* This is for other GNU distributions with internationalized messages.
When compiling libc, the _ macro is predefined. */
#ifdef HAVE_LIBINTL_H
# include <libintl.h>
# define _(msgid) gettext (msgid)
#else
# define _(msgid) (msgid)
#endif
#define _(msgid) (msgid)
#endif
/* This version of `getopt' appears to the caller like standard Unix `getopt'