From f51f2417c59615da5a08cf3165c88cb103b1733f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 6 Mar 2002 22:19:16 +0000 Subject: [PATCH] Brad corrected the include path (again) --- lib/Makefile.am | 3 ++- src/Makefile.am | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Makefile.am b/lib/Makefile.am index 24e07d6..b4536b9 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -14,7 +14,8 @@ lib_LTLIBRARIES = libcurl.la # we use srcdir/include for the static global include files # we use builddir/lib for the generated lib/config.h file to get found -INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/lib +# we use srcdir/lib for the lib-private header files +INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/lib -I$(top_srcdir)/lib libcurl_la_LDFLAGS = -no-undefined -version-info 2:2:0 # This flag accepts an argument of the form current[:revision[:age]]. So, diff --git a/src/Makefile.am b/src/Makefile.am index 5644e0d..597ed62 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,7 +6,8 @@ AUTOMAKE_OPTIONS = foreign nostdinc # we use srcdir/include for the static global include files # we use builddir/src for the generated src/config.h file to get found -INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/src +# we use srcdir/lib for the client-private header files +INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/src -I$(top_srcdir)/src bin_PROGRAMS = curl #memtest -- 2.7.4