aboutsummaryrefslogtreecommitdiff
path: root/curl-config.in
AgeCommit message (Collapse)Author
2003-01-16Markus Oberhumer fixed the -cflags optionDaniel Stenberg
2002-11-20Karol Pietrzak pointed out that simply including the include dir in --cflagsDaniel Stenberg
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.
2002-09-02AC_SUBST HAVE_LIBZ for curl-config.inDaniel Stenberg
2002-08-30--ca shows ca bundle pathDaniel Stenberg
2002-06-11added --disable-[protocol] supportDaniel Stenberg
2002-01-16added support for --cc to output the compiler name. This makes it possibleDaniel Stenberg
to compile libcurl stuff without any prior knowledge: cc=`curl-config --cc` cflags=`curl-config --cflags` libs=`curl-config --libs` $cc $flags $libs -o example example.c Or if you prefer, the oh-so-cool single-line version: `curl-config --cc --cflags --libs` -o example example.c
2001-08-16hm, --cflags should only show the flags a 3rd party program would needDaniel Stenberg
2001-08-16removed --include again and stuffed the libcurl's include path in --cflagsDaniel Stenberg
2001-08-16Added --include to set the compiler include flag for libcurlDaniel Stenberg
2001-08-16Added -lcurl for --libs so that single option should now suffice to useDaniel Stenberg
when building anything with libcurl
2001-08-06Heikki Korpela posted a patch that makes --libs include the directory inDaniel Stenberg
which libcurl itself is installed in.
2001-06-01Add documentation for the --vernum attributeSterling Hughes
2001-05-28added 'curl-config --vernum' for hardcore hex version outputDaniel Stenberg
2001-04-18configure sets variables that curl-config uses to display what featuresDaniel Stenberg
that have been built-in
2001-04-17more intial fixesDaniel Stenberg
2001-04-17libcurl version, not curl versionDaniel Stenberg
2001-04-17tiny tool for outputting curl config variablesDaniel Stenberg