Karol Pietrzak pointed out that simply including the include dir in --cflags
authorDaniel Stenberg <daniel@haxx.se>
Wed, 20 Nov 2002 19:04:34 +0000 (19:04 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 20 Nov 2002 19:04:34 +0000 (19:04 +0000)
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.

curl-config.in

index 052bf34..3e3cb2f 100644 (file)
@@ -107,7 +107,8 @@ while test $# -gt 0; do
        ;;
 
     --cflags)
-               echo -I@includedir@
+               #echo -I@includedir@
+        echo ""
                ;;
 
     --libs)