aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2005-04-15if libgnutls-config isn't found in the given path, deal with it nicer (butDaniel Stenberg
it is still likely to not do very good since it can't figure out all the lib dependencies)
2005-04-07set LD_LIBRARY_PATH when GnuTLS has been foundDaniel Stenberg
2005-04-07Add support for --with-gnutls. If configure detects OpenSSL, you need toDaniel Stenberg
to explicitly disable that first with --without-ssl. Initial attempt.
2005-03-30fix configure's SSL-detection for msys/mingw (from Andres Garcia)Daniel Stenberg
2005-03-15added missing features to curl-configDaniel Stenberg
2005-03-14if ws2_32 is used, append the lib last in the LIBS list (too) to make itDaniel Stenberg
build and link fine with c-ares
2005-03-13Added --enable-sspi that now make libcurl build with SSPI support. This onlyDaniel Stenberg
works when built for win32.
2005-03-11Fixed LDAP library file name bug (KNOWN_BUGS #1). configure now auto-detectsDan Fandrich
the correct dynamic library names by default, and provides override switches --with-ldap-lib, --with-lber-lib and --without-lber-lib. Added CURL_DISABLE_LDAP to platform-specific config files to disable LDAP support on those platforms that probably don't have dynamic OpenLDAP libraries available to avoid compile errors.
2005-03-09Stopped linking to the SSL libs if a full installation isn't found.Dan Fandrich
Removed a redundant library check.
2005-03-08Fixed the --with-zlib configure option so that it always adds the specifiedDan Fandrich
path to the compiler flags. Before, a zlib installation in the default path was always used in preference to the one in the desired location.
2005-02-18Based on Mike Dobbs' report, BUILDING_LIBCURL is now defined in here if itDaniel Stenberg
runs to build with mingw.
2005-02-14check for ENGINE_load_builtin_engines() as well if engine is aroundDaniel Stenberg
2005-02-11remove the check for strftime(), we don't need itDaniel Stenberg
2005-01-18check for errno.hDaniel Stenberg
2004-12-26nah, don't use the system's getpass() function since it too often is limitedDaniel Stenberg
to 8(!) or similar lengths passwords
2004-12-25My reimplementation and cleanup of the getpass source code. We officially noDaniel Stenberg
longer use Angus Mackay's getpass code due to the weirdo license his code was donated to us under.
2004-12-23David Shaw fixed the disable variables so that curl-config --feature worksDaniel Stenberg
correctly!
2004-12-22Marcin Konicki provided two configure fixes and a source fix to make curlDaniel Stenberg
build out-of-the-box on BeOS.
2004-12-19check for openssl/pkcs12.hDaniel Stenberg
2004-12-13Dan Fandrich did minor corrections to his SSL cleanup patchDaniel Stenberg
2004-12-11Dan 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.
2004-12-09Ton Voon provided a configure fix that should fix the notorious (mostlyDaniel Stenberg
reported on Solaris) problem where the size_t check fails due to the SSL libs being found in a dir not searched through by the run-time linker. patch-tracker entry #1081707.
2004-12-05Dan Fandrich added the --disable-cookies option to configure to buildDaniel Stenberg
libcurl without cookie support. This is mainly useful if you want to build a minimalistic libcurl with no cookies support at all. Like for embedded systems or similar.
2004-11-24Andrés García fixed the configure script to detect select properly when runDaniel Stenberg
with Msys/Mingw on Windows.
2004-11-22David Phillips fix for test 518 and my extension to make it not run onDaniel Stenberg
systems that can't run it fine.
2004-11-12Dan Fandrich added the --disable-crypto-auth option to configure to allowDaniel Stenberg
libcurl to build without Digest support. (I figure it should also explicitly disable Negotiate and NTLM.)
2004-11-11Dan Fandrich can spell, I cannotDaniel Stenberg
2004-11-11fix a IDN detect/use mistakeDaniel Stenberg
2004-11-11Dan Fandrich added --disable-verboseDaniel Stenberg
2004-11-11When libidn is detected without explicitly told to, we provide -L/lib andDaniel Stenberg
-I/include options. Not anymore.
2004-11-11dates from 2038 or later now return 0x7fffffff when 32 bit time_t is usedDaniel Stenberg
2004-11-10configure --with-gssapi fixDaniel Stenberg
2004-11-08weirdo hack to fix debian bug report 278691:Daniel Stenberg
'curl -v writes debugging to its network socket if stderr is closed'
2004-11-08check for and require tld.h to be present before libidn usage is activatedDaniel Stenberg
in the build, since libidn 0.3.X didn't have the header and we don't support that old libidn versions anyway. This was mentioned on the list by Jean-Philippe Barrette-LaPierre and in bug report #1062264.
2004-11-04based Andres Garcia's patch, added for mingw buildDaniel Stenberg
2004-11-01When cross-compiling, the configure script no longer attempts to useDaniel Stenberg
pkg-config on the build host in order to detect OpenSSL compiler options.
2004-10-18Peter Wullinger pointed out that curl should call setlocale() properly toDaniel Stenberg
initiate the specific language operations, to make the IDN stuff work better.
2004-10-10If long long is supported, check if [num]LL is supported for numericalDaniel Stenberg
constants.
2004-10-08if basename was found, check for a prototype and if none was found, provideDaniel Stenberg
our own in the formdata.c file to prevent warnings on systems without it
2004-10-07check for tld_strerrorDaniel Stenberg
2004-10-06Dan Fandrich fix for hosts that need both -lnsl and -lsocketDaniel Stenberg
2004-10-05make the given path to --with-libidn override any other installationDaniel Stenberg
2004-10-03when building with libidn support, check for idna_strerror() which isDaniel Stenberg
included in very recent versions
2004-10-01- Based on Fedor Karpelevitch's formpost path basename patch, file parts inDaniel 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-28made pkg-config not get used if a path is given with --with-sslDaniel Stenberg
2004-09-15Replaced the former date parser with a rewrite. No more yacc/bison needed.Daniel Stenberg
2004-08-19the autobuilds failed all over on AIX, attempt to fix the strerror_r() problemDaniel Stenberg
by setting _THREAD_SAFE (and -qthreaded) before strerror_r() is checked for.
2004-08-17added a check for the xlc compiler on AIX, and if that is detect we useDaniel Stenberg
the -qthreaded compiler option
2004-08-17define _THREAD_SAFE on (recent) AIX systems to build thread-safe codeDaniel Stenberg
2004-08-12Removed the _XOPEN_SOURCE defining again since it caused major havoc in IRIXDaniel Stenberg
land with many warnings and even compiler errors due to missing structs etc