add comment for include paths

This commit is contained in:
Yang Tse 2008-07-15 05:46:49 +00:00
parent aa4a7471dd
commit 1e7125ae7b
6 changed files with 41 additions and 22 deletions

View File

@ -43,13 +43,18 @@ CLEANFILES = $(DSP) $(VCPROJ)
lib_LTLIBRARIES = libcurl.la lib_LTLIBRARIES = libcurl.la
LIBCURL_LIBS = @LIBCURL_LIBS@ LIBCURL_LIBS = @LIBCURL_LIBS@
# we use srcdir/include for the static global include files # Specify our include paths here, and do it relative to $(top_srcdir) and
# we use builddir/lib for the generated lib/config.h file to get found # $(top_builddir), to ensure that these paths which belong to the library
# we use srcdir/lib for the lib-private header files # being currently built and tested are searched before the library which
# might possibly already be installed in the system.
#
# $(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
INCLUDES = -I$(top_srcdir)/include \ INCLUDES = -I$(top_srcdir)/include \
-I$(top_builddir)/lib \ -I$(top_builddir)/lib \
-I$(top_srcdir)/lib -I$(top_srcdir)/lib
VERSION=-version-info 5:0:1 VERSION=-version-info 5:0:1

View File

@ -5,7 +5,7 @@
# | (__| |_| | _ <| |___ # | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____| # \___|\___/|_| \_\_____|
# #
# Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. # Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
# #
# This software is licensed as described in the file COPYING, which # This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms # you should have received as part of this distribution. The terms
@ -22,10 +22,16 @@
########################################################################### ###########################################################################
AUTOMAKE_OPTIONS = foreign nostdinc AUTOMAKE_OPTIONS = foreign nostdinc
# we use srcdir/src for "private" includes # Specify our include paths here, and do it relative to $(top_srcdir) and
# we use srcdir/include for the static global include files # $(top_builddir), to ensure that these paths which belong to the library
# we use builddir/src for the generated include files to get found # being currently built and tested are searched before the library which
# we use srcdir/lib for the header files we "borrow" from the lib # might possibly already be installed in the system.
#
# $(top_srcdir)/include is for libcurl's external include files
# $(top_builddir)/lib is for libcurl's generated lib/config.h file
# $(top_builddir)/src is for curl's generated src/config.h file
# $(top_srcdir)/lib is for libcurl's lib/setup.h and other "borrowed" files
# $(top_srcdir)/src is for curl's src/setup.h and "curl-private" files
INCLUDES = -I$(top_srcdir)/include \ INCLUDES = -I$(top_srcdir)/include \
-I$(top_builddir)/lib \ -I$(top_builddir)/lib \

View File

@ -22,14 +22,16 @@
########################################################################### ###########################################################################
AUTOMAKE_OPTIONS = foreign nostdinc AUTOMAKE_OPTIONS = foreign nostdinc
# $(top_srcdir)/include/curl is for the main curl include files, to make it # Specify our include paths here, and do it relative to $(top_srcdir) and
# easier to include this specific set of curl headers, and NOT the ones # $(top_builddir), to ensure that these paths which belong to the library
# possibly already installed in the system. # being currently built and tested are searched before the library which
# -I$(top_srcdir)/lib is for the setup.h file, included by test.h # might possibly already be installed in the system.
# -I$(top_builddir)/lib is for the config.h file, possibly included by the #
# setup.h file # $(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
INCLUDES = -I$(top_srcdir)/include/curl \ INCLUDES = -I$(top_srcdir)/include \
-I$(top_builddir)/lib \ -I$(top_builddir)/lib \
-I$(top_srcdir)/lib -I$(top_srcdir)/lib

View File

@ -13,7 +13,7 @@
#include <ctype.h> #include <ctype.h>
#include <errno.h> #include <errno.h>
#include <mprintf.h> #include <curl/mprintf.h>
const char *HOSTHEADER = "Host: www.host.foo.com"; const char *HOSTHEADER = "Host: www.host.foo.com";
const char *JAR = "log/jar506"; const char *JAR = "log/jar506";

View File

@ -15,7 +15,7 @@
#include "setup.h" #include "setup.h"
#include <curl.h> #include <curl/curl.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -5,7 +5,7 @@
# | (__| |_| | _ <| |___ # | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____| # \___|\___/|_| \_\_____|
# #
# Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al. # Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
# #
# This software is licensed as described in the file COPYING, which # This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms # you should have received as part of this distribution. The terms
@ -20,10 +20,16 @@
# #
# $Id$ # $Id$
########################################################################### ###########################################################################
AUTOMAKE_OPTIONS = foreign nostdinc
# Specify our include paths here, and do it relative to $(top_srcdir) and
# $(top_builddir), to ensure that these paths which belong to the library
AUTOMAKE_OPTIONS = foreign # being currently built and tested are searched before the library which
# might possibly already be installed in the system.
#
# $(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
INCLUDES = -I$(top_srcdir)/include \ INCLUDES = -I$(top_srcdir)/include \
-I$(top_builddir)/lib \ -I$(top_builddir)/lib \