]> git.saurik.com Git - bison.git/commitdiff
Some hosts don't like `/' in includes.
authorAkim Demaille <akim@epita.fr>
Wed, 12 Dec 2001 11:58:19 +0000 (11:58 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 12 Dec 2001 11:58:19 +0000 (11:58 +0000)
* src/system.h: Include libgettext.h without qualifying the path.
* src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
$(top_srcdir).

ChangeLog
src/Makefile.am
src/system.h

index 0ca5b112442ef866d301ffff4db9c284dfd6bea4..2513cb676c705448d2ab5b113a88005409208f0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 067bc11054141db3f9eaef6ec3e7508f29e9bf90..05a89fe81134f3735388f5fb0f25c9bd62b5e008 100644 (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
 
index ff05bc82e9857d3988fe2a7af2ca0860499116ca..850c5a7f0d14fd8dd37b36c42f915d7bb99c2da4 100644 (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)