Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |