diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2001-08-16 13:02:46 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-16 13:02:46 +0000 | 
| commit | d9e54a3cdf908261fdd2bd4d007baaa84d9ec698 (patch) | |
| tree | 2bbb900918c1af1ae8b47a34e09c65bedf24b430 | |
| parent | 32eaf9e83a80c3630f8431976cb36c5eba2ab5a8 (diff) | |
Added --include to set the compiler include flag for libcurl
| -rw-r--r-- | curl-config.in | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/curl-config.in b/curl-config.in index 7d56233a7..43602a00b 100644 --- a/curl-config.in +++ b/curl-config.in @@ -19,6 +19,7 @@ Available values for OPTION include:    --cflags    pre-processor and compiler flags    --feature   newline separated list of enabled features    --help      display this help and exit +  --include   display compiler flag(s) to set curl\'s include path    --libs      library linking information    --prefix    curl install prefix    --version   output version information @@ -76,6 +77,10 @@ while test $# -gt 0; do         	echo @CPPFLAGS@         	;; +    --include) +       	echo -I@includedir@ +       	;; +      --libs)         	echo -L@libdir@ -lcurl @LDFLAGS@ @LIBS@         	;; | 
