Some hosts don't like `/' in includes.

* src/system.h: Include libgettext.h without qualifying the path.
* src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
$(top_srcdir).
This commit is contained in:
Akim Demaille
2001-12-12 11:58:19 +00:00
parent c79cea6dff
commit dbfb6dcd33
3 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
2001-12-12 Akim Demaille <akim@epita.fr>
Some hosts don't like `/' in includes.
* src/system.h: Include libgettext.h without qualifying the path.
* src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
$(top_srcdir).
2001-12-11 Marc Autret <autret_m@epita.fr>
* src/output.c (output_parser): Remove useless muscle.

View File

@@ -28,8 +28,8 @@ CFLAGS = @CFLAGS@ $(WARNING_CFLAGS)
# config.h in build/.
INCLUDES = -I$(top_builddir)/intl \
-I$(top_builddir) \
-I$(top_srcdir)/lib \
-I$(top_srcdir)
-I$(top_srcdir)/intl \
-I$(top_srcdir)/lib
LDADD = $(INTLLIBS) ../lib/libbison.a

View File

@@ -149,7 +149,7 @@ size_t strnlen PARAMS ((const char *s, size_t maxlen));
# define setlocale(Category, Locale)
#endif
#include "intl/libgettext.h"
#include "libgettext.h"
#define _(Msgid) gettext (Msgid)
#define N_(Msgid) (Msgid)