diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2006-04-30 14:30:16 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu.herrb@laas.fr> | 2006-04-30 14:30:16 +0000 |
commit | fc82234c73362d6f07acf2dcf72bcefd96850105 (patch) | |
tree | deab8107d49f5396050426062043b3c02dba96e2 | |
parent | bc813392aa8f563e6cd385636b90a7496fcaa14e (diff) |
Fix ERRORDB definition for the case where ${prefix} != /usr
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-04-30 Matthieu Herrb <matthieu.herrb@laas.fr> + + * src/Makefile.am + Fix ERRORDB definition for the case where ${prefix} != /usr + 2006-04-26 Adam Jackson <ajax@freedesktop.org> * configure.ac: diff --git a/src/Makefile.am b/src/Makefile.am index d5ed131..dd9df55 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,8 +4,10 @@ BUILT_SOURCES = $(BUILT_FILES) CLEANFILES = $(BUILT_SOURCES) SRCH_DEFINES = -DXFILESEARCHPATHDEFAULT=\"$(XFILESEARCHPATHDEFAULT)\" +ERRORDB_DEFINES = -DERRORDB=\"$(libdir)/X11/XtErrorDB\" -AM_CFLAGS = $(XT_CFLAGS) $(X11_CFLAGS) $(SRCH_DEFINES) $(XTMALLOC_ZERO_CFLAGS) +AM_CFLAGS = $(XT_CFLAGS) $(X11_CFLAGS) $(SRCH_DEFINES) $(ERRORDB_DEFINES) \ + $(XTMALLOC_ZERO_CFLAGS) INCLUDES = -I$(top_srcdir)/include/ -I$(top_srcdir)/include/X11 \ -I$(top_builddir)/include -I$(top_builddir)/include/X11 |