Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-05-31 | Test and substance patch. | Sterling Hughes | |
This is my first CVS commit :), what it does: - Makes sure that parts of the cURL library don't get initialized twice - Makes sure that we only free what we initialize | |||
2001-05-31 | Added CVS $Id$ keyword for inline version tracking | Daniel Stenberg | |
2001-05-31 | updated to again set the flags of what to init, and now also feature a | Daniel Stenberg | |
set of available flags | |||
2001-05-31 | fixed the dlopen check | Daniel Stenberg | |
2001-05-31 | removed _REENTRANT define | Daniel Stenberg | |
2001-05-31 | re-generated | Daniel Stenberg | |
2001-05-31 | include setup.h _before_ system includes | Daniel Stenberg | |
2001-05-31 | if NEED_REENTRANT is set, define _REENTRANT already here since it has to | Daniel Stenberg | |
be defined as many include files as possible (Solaris req) | |||
2001-05-31 | includes setup.h, and thus I could remove the _REENTRANT define | Daniel Stenberg | |
2001-05-31 | the CURL_GLOBAL flags are now used to set what parts to init globally | Daniel Stenberg | |
2001-05-31 | went back to the version where the flags argument to curl_global_init() | Daniel Stenberg | |
specify exactly what global parts to init. Thanks to Sterling Hughes really for arguing wisely. | |||
2001-05-31 | removed the prototype and made it include string.h instead | Daniel Stenberg | |
If your system, such as Solaris 2.7, lacks the strtok_r() prototype in string.h, then you'll face a bunch of warnings on all instances where strtok_r() is used. There's not much we can do about it. Adding a prototype here screws everything up on other platforms! :-( | |||
2001-05-31 | Sterling Hughes suggested we set 'static' before size_t... | Daniel Stenberg | |
2001-05-30 | libcurl now has MUTE and NOPROGRESS set by default | Daniel Stenberg | |
2001-05-30 | 7.8-pre2 | Daniel Stenberg | |
2001-05-30 | include strtok.h to get the prototype | Daniel Stenberg | |
2001-05-30 | finally fixed the 'ret' compiler warning | Daniel Stenberg | |
2001-05-30 | removed python interface, there is one now! ;-) | Daniel Stenberg | |
2001-05-30 | -# fix, thread fix, easy.c compile fix and more | Daniel Stenberg | |
2001-05-30 | made the automake line re-build from _all_ Makefile.am files in the source tree | Daniel Stenberg | |
2001-05-30 | english fix | Daniel Stenberg | |
2001-05-30 | now uses CURL_GLOBAL_DEFAULT | Daniel Stenberg | |
2001-05-30 | curl_global_init() support for CURL_GLOBAL_NOT_SSL | Daniel Stenberg | |
2001-05-30 | Sterling Hughes's fixes | Daniel Stenberg | |
2001-05-30 | Added Solaris 'pkgadd' building support to packages collection and ↵ | Cris Bailiff | |
autoconf/automake files | |||
2001-05-29 | not used in autoconf version 2.50 | Daniel Stenberg | |
2001-05-29 | check for strtok_r | Daniel Stenberg | |
2001-05-29 | curl_ => Curl_ | Daniel Stenberg | |
2001-05-29 | re-indented to follow "project curl"-style, renamed curl_ prefix to Curl_ | Daniel Stenberg | |
2001-05-29 | strtok() replaced with strtok_r() | Daniel Stenberg | |
2001-05-29 | adjusted for automake 1.4+ | Daniel Stenberg | |
2001-05-29 | Added strtok.[ch] | Daniel Stenberg | |
2001-05-29 | we rqeuire autoconf 2.50 now | Daniel Stenberg | |
2001-05-29 | fixed the -# to write to the same as --stderr is set to | Daniel Stenberg | |
2001-05-29 | 3.11 How do I POST with a different Content-Type? | Daniel Stenberg | |
2001-05-29 | clarified the MUTE option | Daniel Stenberg | |
2001-05-29 | updated, improved language at a few places | Daniel Stenberg | |
2001-05-29 | moved list of authors to the separate THANKS file and added that to the | Daniel Stenberg | |
release archive | |||
2001-05-29 | text: added in 7.8 | Daniel Stenberg | |
2001-05-29 | beauty fix | Daniel Stenberg | |
2001-05-29 | global_init() takes that flag argument | Daniel Stenberg | |
2001-05-28 | 7.8-pre1 commit | Daniel Stenberg | |
2001-05-28 | fixes | Daniel Stenberg | |
2001-05-28 | added libtool | Daniel Stenberg | |
2001-05-28 | major: curl_general_init/cleanup | Daniel Stenberg | |
2001-05-28 | ftps:// works | Daniel Stenberg | |
2001-05-28 | adjusted the global_init() call to pass the new flag argument too | Daniel Stenberg | |
2001-05-28 | global_init() takes a flag option now, to tell libcurl what _not_ to init. | Daniel Stenberg | |
it will make it better when the application uses several libs that use openssl and it also enables us to do the win32 winsock initing in the future if we want to | |||
2001-05-28 | better -v use, passes -I to all perl invokes | Daniel Stenberg | |
2001-05-28 | added calls to curl_global_*, they aren't really needed for this application | Daniel Stenberg | |
but it shows good manner to always cleanup |