diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-28 19:29:50 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-28 19:29:50 +0000 |
commit | d576be58dc2e87152188be34cf40a7b7578fc5a4 (patch) | |
tree | e1d40257ba4e216eaeb8a214edbbeb9e8b43b8a6 /lib/Makefile.am | |
parent | 1a2b88964ff4593f0d4a0eba1d3cc90e2c61fda8 (diff) | |
download | curl-d576be58dc2e87152188be34cf40a7b7578fc5a4.tar.gz |
allow usage of in-tree c-ares when building from outside of the cvs tree
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index c1ec14e82..8f0113eda 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -54,11 +54,15 @@ LIBCURL_LIBS = @LIBCURL_LIBS@ # $(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 "private" 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 if SONAME_BUMP # |