From: Daniel Stenberg Date: Wed, 20 Nov 2002 19:04:34 +0000 (+0000) Subject: Karol Pietrzak pointed out that simply including the include dir in --cflags X-Git-Tag: curl-7_10_3~150 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f68505ee23d37afa31d908e146beab33935b7eed;p=curl Karol Pietrzak pointed out that simply including the include dir in --cflags is not a good thing, as recent gccs for example complain if it is /usr/include Right now, we just output "" until we think of something better. --- diff --git a/curl-config.in b/curl-config.in index 052bf345c..3e3cb2f2e 100644 --- a/curl-config.in +++ b/curl-config.in @@ -107,7 +107,8 @@ while test $# -gt 0; do ;; --cflags) - echo -I@includedir@ + #echo -I@includedir@ + echo "" ;; --libs)