Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-22 | curl-config.in: replace tabs by spaces | Kamil Dudka | |
2013-04-16 | curl-config: don't output static libs when they are disabled | Wouter Van Rooy | |
Curl-config outputs static libraries even when they are disabled in configure. This causes problems with the build of pycurl. | |||
2013-02-06 | curl-config.in: do not randomly mix tabs and spaces | Kamil Dudka | |
2012-12-03 | build: prevent global LIBS from influencing src and lib build targets | Yang Tse | |
Currently, LIBS is already used through other macros. | |||
2012-08-07 | curl-config: parentheses fix | Daniel Stenberg | |
Braces, not parentheses, should be used for shell variable names. Bug: http://curl.haxx.se/bug/view.cgi?id=3551460 Reported by: Edward Sheldrake | |||
2012-05-26 | Fix libcurl.pc and curl-config generation for static MingW* cross builds | Yang Tse | |
2012-03-08 | curl-config: only provide libraries with --libs | Dave Reisner | |
In line with the manpage, curl-config --libs should only provide the necessary library flags for the linker in order to compile software with libcurl. Also with this change, we match what the pkg-config file provides. | |||
2011-04-19 | curl-config: fix version output | Daniel Stenberg | |
do the s/VERSION/CURLVERSION replacement for the human redable output for --checkfor Reported by: Ryan Schmidt | |||
2011-04-18 | curl-config: fix --version | Daniel Stenberg | |
curl-config --version didn't output the correct version string (bug introduced in commit 0355e33b5f7b234cf3), and unfortunately the test case 1022 that was supposed to check for this was broken. This change fixes the test to detect this problem and it fixes the output. Bug: http://curl.haxx.se/bug/view.cgi?id=3288727 | |||
2010-07-25 | curl-config: --built-shared returns shared info | Daniel Stenberg | |
The curl-config now features a --built-shared command line option that will output 'yes' or 'no' depending if the build process was asked to build shared library/libraries or not. It is primarily made to offer more details to the test suite to know what kind of stunts it can expect to work. | |||
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2009-11-14 | Added '--configure' option to curl-config to display original configure ↵ | Claes Jakobsson | |
arguments when curl was built | |||
2009-03-20 | removed useless comment | Daniel Stenberg | |
2008-09-03 | Fixed curl-config when no features are enabled. | Dan Fandrich | |
2008-09-03 | remove extra semicolon from curl-config.in | Yang Tse | |
2008-09-02 | - Keith Mok added supported_protocols and supported_features to the pkg-config | Daniel Stenberg | |
file for libcurl, and while doing that fix he unified with curl-config.in how the supported protocols and features are extracted and used, so both those tools should now always be synced. | |||
2008-01-10 | Michal Marek made curl-config --libs not include /usr/lib64 in the output | Daniel Stenberg | |
(it already before skipped /usr/lib). /usr/lib64 is the default library directory on many 64bit systems and it's unlikely that anyone would use the path privately on systems where it's not. | |||
2007-10-29 | Based on one of those bug reports that are intercepted by a distro's bug | Daniel Stenberg | |
tracker (https://bugzilla.redhat.com/show_bug.cgi?id=316191), I now made curl-config --features and --protocols show the correct output when built with NSS. | |||
2007-10-25 | Added the --static-libs option to curl-config | Dan Fandrich | |
2007-09-14 | Added LDAPS, SCP and SFTP to curl-config --protocols. | Dan Fandrich | |
Removed and fixed some AC_SUBST configure entries. | |||
2007-02-17 | Use configure's new LIBCURL_LIBS variable | Dan Fandrich | |
2007-02-14 | Don't bother adding a library path of /usr/lib in curl-config --libs | Dan Fandrich | |
2007-02-14 | Fixed the problem of curl-config --libs specifying unneeded libraries | Dan Fandrich | |
dependencies to applications. | |||
2006-05-02 | curl-config got a --checkfor option | Daniel Stenberg | |
2006-01-16 | David Shaw finally removed all traces of Gopher and we are now officially | Daniel Stenberg | |
not supporting it. It hasn't been functioning for years anyway, so this is just finally stating what already was true. And a cleanup at the same time. | |||
2005-09-04 | --protocols now supports TFTP | Daniel Stenberg | |
2005-08-07 | When curl is built with GnuTLS, curl-config didn't include "SSL" when | Daniel Stenberg | |
--features was used | |||
2005-03-15 | added missing features to curl-config | Daniel Stenberg | |
2004-12-24 | David Shaw added --protocols, and thus the --feature no longer mentions what | Daniel Stenberg | |
protocols that are disabled. | |||
2004-12-11 | Dan Fandrich: | Daniel Stenberg | |
Here's a stab at a consolidation of the SSL detection heuristics into configure. Source files aren't changed by this patch, except for setup.h and the various config*.h files. Within the configure script, OPENSSL_ENABLED is used to determine if SSL is being used or not, and outside configure, USE_SSLEAY means the same thing; this could be even further unified some day. Now, when SSL is not detected, configure skips the various checks that are dependent on SSL, speeding up the configure process and avoiding complications with cross compiles. I also updated all the architecture- specific config files I could see, but I couldn't test them. | |||
2003-12-08 | curl-config now shows asyncdns if built with ares enabled | Daniel Stenberg | |
2003-01-16 | Markus Oberhumer fixed the -cflags option | Daniel Stenberg | |
2002-11-20 | Karol Pietrzak pointed out that simply including the include dir in --cflags | Daniel 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-02 | AC_SUBST HAVE_LIBZ for curl-config.in | Daniel Stenberg | |
2002-08-30 | --ca shows ca bundle path | Daniel Stenberg | |
2002-06-11 | added --disable-[protocol] support | Daniel Stenberg | |
2002-01-16 | added support for --cc to output the compiler name. This makes it possible | Daniel 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-16 | hm, --cflags should only show the flags a 3rd party program would need | Daniel Stenberg | |
2001-08-16 | removed --include again and stuffed the libcurl's include path in --cflags | Daniel Stenberg | |
2001-08-16 | Added --include to set the compiler include flag for libcurl | Daniel Stenberg | |
2001-08-16 | Added -lcurl for --libs so that single option should now suffice to use | Daniel Stenberg | |
when building anything with libcurl | |||
2001-08-06 | Heikki Korpela posted a patch that makes --libs include the directory in | Daniel Stenberg | |
which libcurl itself is installed in. | |||
2001-06-01 | Add documentation for the --vernum attribute | Sterling Hughes | |
2001-05-28 | added 'curl-config --vernum' for hardcore hex version output | Daniel Stenberg | |
2001-04-18 | configure sets variables that curl-config uses to display what features | Daniel Stenberg | |
that have been built-in | |||
2001-04-17 | more intial fixes | Daniel Stenberg | |
2001-04-17 | libcurl version, not curl version | Daniel Stenberg | |
2001-04-17 | tiny tool for outputting curl config variables | Daniel Stenberg | |