]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed default -I options: there are no headers in $(top_builddir)/lib/ but
authorAlex Rousskov <rousskov@measurement-factory.com>
Thu, 19 Feb 2009 20:28:48 +0000 (13:28 -0700)
committerAlex Rousskov <rousskov@measurement-factory.com>
Thu, 19 Feb 2009 20:28:48 +0000 (13:28 -0700)
there is autoconf.h in $(top_builddir)/include/

Fixed hard-coded OBJS dependencies: autoconf.h is in $(top_builddir)/include/
The bug apparently did not bother anyobody too much, adding to my suspicion
that we do not really need these hard-coded OBJS dependencies.

src/Common.am

index 14d8edceed5633292e3b8a5a9fc1468fe79e9b13..084f108ccae7a797bde88ec5940d726665d8d784 100644 (file)
@@ -17,10 +17,9 @@ INCLUDES = \
        -I$(top_srcdir) \
        -I$(top_srcdir)/include \
        -I$(top_srcdir)/src \
-       -I$(top_builddir)/lib \
+       -I$(top_builddir)/include \
        @SQUID_CPPUNIT_INC@
 
 ## make all compiled sources depend on generated files
 ## XXX: Do we really need this? Does auto-dependency tracking work?
-## XXX: And should not autoconf be in $(top_builddir)?
-$(OBJS): $(top_srcdir)/include/version.h $(top_srcdir)/include/autoconf.h
+$(OBJS): $(top_srcdir)/include/version.h $(top_builddir)/include/autoconf.h