]> git.saurik.com Git - bison.git/commitdiff
Some hosts don't like `/' in includes.
authorAkim Demaille <akim@epita.fr>
Wed, 12 Dec 2001 11:55:56 +0000 (11:55 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 12 Dec 2001 11:55:56 +0000 (11:55 +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/Makefile.in
src/system.h

index 4240599dd02f3d45a18f3e969885e5b77de16ce7..b6cb5baf49f4a93717753a3d42abee9ffd4f69e6 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-10  Akim Demaille  <akim@epita.fr>
 
        Bison dumps core on bash.y.
index 4f83590fb506280c38a309309a5559edff16e47b..e9bf9ae2335719ad01fb39cea3db093f13b9b0be 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 147dd4f1b38aa1a7b5f8228969239c3a27ff5d27..0155c2791641224d7b5ecc2333e93f9ebe9799a6 100644 (file)
@@ -115,8 +115,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 70605c499fe5d76023d818e4e5293ca059807066..04412d5638322cb2ec33e0ba353be4bc62bc06ae 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)