Update of /cvsroot/mockpp/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8019/mockpp
Modified Files:
Makefile.am
Log Message:
fixed compilation ambiguity when #including some header
Index: Makefile.am
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/Makefile.am,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -d -r1.84 -r1.85
--- Makefile.am 2 Jul 2005 13:50:09 -0000 1.84
+++ Makefile.am 17 Sep 2005 08:13:53 -0000 1.85
@@ -1,4 +1,5 @@
-INCLUDES = -I/usr/local/include $(all_includes) -I$(top_srcdir)
+INCLUDES = $(all_includes) -I$(top_srcdir) -I$(top_builddir)
+DEFAULT_INCLUDES = $(INCLUDES)
SUBDIRS = chaining compat util builder constraint matcher stub production . docs tests po \
examples
|