diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-29 00:38:08 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-29 00:38:08 +0000 |
commit | b6282b99cbfcd464348249a706650f39a929b2b5 (patch) | |
tree | 75a2f61ff79db2a493ad8aba7cb8aa8692fce5da /tests | |
parent | a8483841b5981e00c740fd8fb76f6e1122db876e (diff) |
allow usage of in-tree c-ares when building from outside of the cvs tree
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/server/Makefile.am b/tests/server/Makefile.am index a922f1934..7c520ae04 100644 --- a/tests/server/Makefile.am +++ b/tests/server/Makefile.am @@ -31,11 +31,15 @@ AUTOMAKE_OPTIONS = foreign nostdinc # $(top_srcdir)/include is for libcurl's external include files # $(top_builddir)/lib is for libcurl's generated lib/config.h file # $(top_srcdir)/lib is for libcurl's lib/setup.h and other "borrowed" files +# $(top_builddir)/ares is for in-tree c-ares's generated ares_build.h file +# $(top_srcdir)/ares is for in-tree c-ares's external include files INCLUDES = -I$(top_builddir)/include \ -I$(top_srcdir)/include \ -I$(top_builddir)/lib \ - -I$(top_srcdir)/lib + -I$(top_srcdir)/lib \ + -I$(top_builddir)/ares \ + -I$(top_srcdir)/ares # Makefile.inc provides the source defines (noinst_PROGRAMS, useful, *_SOURCES, and *_LDADD) include Makefile.inc |