Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-01 | When cross-compiling, the configure script no longer attempts to use | Daniel Stenberg | |
pkg-config on the build host in order to detect OpenSSL compiler options. | |||
2004-10-18 | Peter Wullinger pointed out that curl should call setlocale() properly to | Daniel Stenberg | |
initiate the specific language operations, to make the IDN stuff work better. | |||
2004-10-10 | If long long is supported, check if [num]LL is supported for numerical | Daniel Stenberg | |
constants. | |||
2004-10-08 | if basename was found, check for a prototype and if none was found, provide | Daniel Stenberg | |
our own in the formdata.c file to prevent warnings on systems without it | |||
2004-10-07 | check for tld_strerror | Daniel Stenberg | |
2004-10-06 | Dan Fandrich fix for hosts that need both -lnsl and -lsocket | Daniel Stenberg | |
2004-10-05 | make the given path to --with-libidn override any other installation | Daniel Stenberg | |
2004-10-03 | when building with libidn support, check for idna_strerror() which is | Daniel Stenberg | |
included in very recent versions | |||
2004-10-01 | - Based on Fedor Karpelevitch's formpost path basename patch, file parts in | Daniel Stenberg | |
formposts no longer include the path part. If you _really_ want them, you must provide your preferred full file name with CURLFORM_FILENAME. Added detection for libgen.h and basename() to configure. My custom basename() replacement function for systems without it, might be a bit too naive... Updated 6 test cases to make them work with the stripped paths. | |||
2004-09-28 | made pkg-config not get used if a path is given with --with-ssl | Daniel Stenberg | |
2004-09-15 | Replaced the former date parser with a rewrite. No more yacc/bison needed. | Daniel Stenberg | |
2004-08-19 | the autobuilds failed all over on AIX, attempt to fix the strerror_r() problem | Daniel Stenberg | |
by setting _THREAD_SAFE (and -qthreaded) before strerror_r() is checked for. | |||
2004-08-17 | added a check for the xlc compiler on AIX, and if that is detect we use | Daniel Stenberg | |
the -qthreaded compiler option | |||
2004-08-17 | define _THREAD_SAFE on (recent) AIX systems to build thread-safe code | Daniel Stenberg | |
2004-08-12 | Removed the _XOPEN_SOURCE defining again since it caused major havoc in IRIX | Daniel Stenberg | |
land with many warnings and even compiler errors due to missing structs etc | |||
2004-08-11 | define the _XOPEN_SOURCE define in the config.h file instead, and also added a | Daniel Stenberg | |
decent quote about the define, taken from http://www.opengroup.org/onlinepubs/007908799/xsh/compilation.html | |||
2004-08-11 | fixed the default result for xopen and mimpure to work better | Daniel Stenberg | |
2004-08-11 | experimental code to detect mips-sgi-irix systems that build without gcc | Daniel Stenberg | |
and if so, define _XOPEN_SOURCE to 500 in an attempt to build with less warnings (on the 64bit versions) | |||
2004-08-09 | the krb4 stuff needs -lcom_err to link now, for some odd reason. This is | Daniel Stenberg | |
possibly only on some platforms, but it happens on my Solaris 2.7 box and I don't know anyone else that regularly build curl with krb4 support. | |||
2004-07-24 | AM_PROG_LIBTOOL is deprecated and AC_PROG_LIBTOOL should be used instead | Daniel Stenberg | |
2004-07-22 | refer bug reports to the mailing lists, not the old email alias | Daniel Stenberg | |
2004-06-29 | commented out the check for gethostbyname_r() as we no longer use it | Daniel Stenberg | |
2004-06-27 | check for a fine poll() before it is used to sleep subsecond | Daniel Stenberg | |
2004-06-03 | set an automake conditional for if this is a cross-compile or not | Daniel Stenberg | |
2004-05-25 | checl for the idn_free stuff to remain functionall even with older libidn | Daniel Stenberg | |
versions | |||
2004-05-06 | removed the warning if libidn isn't found | Daniel Stenberg | |
2004-05-06 | very minor output change | Daniel Stenberg | |
2004-05-05 | AC_CHECK_TOOL is prolly better to use when checking for ar | Daniel Stenberg | |
2004-05-05 | alert the user if 'sed' or 'ar' couldn't be found, as it might very well | Daniel Stenberg | |
render a build impossible | |||
2004-05-05 | check the size of size_t for lib/mprintf.c | Daniel Stenberg | |
2004-04-27 | without-libidn works too now | Daniel Stenberg | |
2004-04-26 | We now make sure to only scan for SSL options with pkg-config if we haven't | Daniel Stenberg | |
disabled SSL with --without-ssl. This previously made the Makefiles use the SSL libs even though told not to. | |||
2004-04-26 | improved libidn detection to correct the false positives we got | Daniel Stenberg | |
2004-04-26 | Moved down the ares check again to the bottom of the script since it | Daniel Stenberg | |
modified the compiler and link options so nothing can be tested for after this check, as the c-ares lib might not have been built yet! | |||
2004-04-26 | "configure summary" | Daniel Stenberg | |
2004-04-26 | --with-libidn[=PATH] is now supported | Daniel Stenberg | |
2004-04-25 | updated the warning text when SSL is explicitly disabled | Daniel Stenberg | |
2004-04-01 | Only check that the c-ares lib is valid if we don't use the "embedded" | Daniel Stenberg | |
directory. The provided ares dir is probably up-to-date, but more importantly it is often not built yet at the time when this configure script runs. | |||
2004-04-01 | When ares is enabled, we now check for the ares_cancel function to verify | Daniel Stenberg | |
that we use a library that is recent enough to build with the latest libcurl. | |||
2004-03-30 | Added CURL_CHECK_NI_WITHSCOPEID that checks if NI_WITHSCOPEID exists and | Daniel Stenberg | |
works. No code actually uses the HAVE_NI_WITHSCOPEID (that a positive test results in), but this is still only for testing purposes. | |||
2004-03-29 | netinet/tcp.h may require netinet/in.h to be include before | Daniel Stenberg | |
2004-03-26 | check for netinet/tcp.h precense before actually including it | Daniel Stenberg | |
2004-03-25 | get the version number from the new curlver.h header file | Daniel Stenberg | |
2004-03-25 | localtime and gmtime are not thread-safe on newer AIXes either so we force | Daniel Stenberg | |
a check for there *_r-versions too | |||
2004-03-25 | force recent AIX versions to check for strerror_r | Daniel Stenberg | |
2004-03-24 | added check for strerror_r() | Daniel Stenberg | |
2004-03-18 | For IRIX systems we must pick the "correct" lib dirs for the particular | Daniel Stenberg | |
libs we want. $libsuff is the magic variable that contains a suffix (which might be blank). Tor Arntsen brought details and verified this fix. | |||
2004-03-15 | Added the new vms subdir in the packages dir | Daniel Stenberg | |
2004-03-03 | Dan Fandrich fixed some GSS detection flaws | Daniel Stenberg | |
2004-02-25 | Moved most of the set-debug-options-depending-on-compiler logic to the new | Daniel Stenberg | |
CURL_CC_DEBUG_OPTS function in acinclude.m4 |