summaryrefslogtreecommitdiff
path: root/lib/config-amigaos.h
Commit message (Collapse)AuthorAgeFilesLines
* configure: remove use of RETSIGTYPEMichael Forney2021-04-071-2/+1
| | | | | | | | | | | This was previously defined by the obsolete AC_TYPE_SIGNAL macro, which was removed in 2682e5f5. The deprecation text says > Your code may safely assume C89 semantics that RETSIGTYPE is void. So, remove it and just use void instead. Closes #6861
* copyright: fix year rangesDaniel Stenberg2020-11-051-1/+1
| | | | Follow-up from 4d2f8006777
* curl.se: new homeDaniel Stenberg2020-11-041-2/+2
| | | | Closes #6172
* copyrights: update all copyright notices to 2019 on files changed this yearVilhelm Prytz2019-11-021-1/+1
| | | | Closes #4547
* build: Remove unused HAVE_LIBSSL and HAVE_LIBCRYPTO definesPaul B. Omta2019-10-051-2/+0
| | | | Closes https://github.com/curl/curl/pull/4460
* config-amigaos.h: (embarrassed) made the line shorterDaniel Stenberg2016-12-181-1/+1
|
* config-amigaos.h: fix bug report email referenceDaniel Stenberg2016-12-181-2/+2
|
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* openssl: remove all uses of USE_SSLEAYDaniel Stenberg2015-03-051-2/+1
| | | | | | | SSLeay was the name of the library that was subsequently turned into OpenSSL many moons ago (1999). curl does not work with the old SSLeay library since years. This is now reflected by only using USE_OPENSSL in code that depends on OpenSSL.
* curl tool: use configuration files from lib directoryYang Tse2012-04-061-8/+22
| | | | | | | | | | | Configuration files such as curl_config.h and all config-*.h no longer exist nor are generated/copied into 'src' directory, now these only exist in 'lib' directory from where curl tool sources uses them. Additionally old src/setup.h has been refactored into src/tool_setup.h which now pulls lib/setup.h The possibility of a makefile needing an include path adjustment exists.
* errno.h inclusion conditionally done in setup_once.hYang Tse2011-07-241-1/+2
|
* build: provide SIZEOF_SIZE_T definition for non-configure buildsYang Tse2010-12-021-0/+1
|
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systemsYang Tse2010-02-261-0/+3
|
* sclose() function-like macro definition used to close a socket,Yang Tse2009-06-191-0/+1
| | | | | now solely based on HAVE_CLOSESOCKET and HAVE_CLOSESOCKET_CAMEL config file preprocessor definitions.
* Use build-time configured curl_socklen_t instead of socklen_tYang Tse2009-05-021-5/+2
|
* Refactor configure script detection of functions used to set sockets intoYang Tse2008-11-131-1/+2
| | | | non-blocking mode, and decouple function detection from function capability.
* ntoa() and inet_ntoa_r() no longer usedYang Tse2008-09-241-1/+0
|
* Initial support of curlbuild.h and curlrules.h which allowsYang Tse2008-08-071-1/+0
| | | | to have a curl_off_t data type no longer gated to off_t.
* RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now definedYang Tse2008-07-171-3/+3
| | | | to the data type pointed by its respective argument and not the pointer type.
* Configure process now checks availability of recvfrom() socket function andYang Tse2008-07-161-1/+10
| | | | | | finds out its return type and the types of its arguments. Added definitions for non-configure systems config files, and introduced macro sreadfrom which will be used on udp sockets as a recvfrom() wrapper.
* proper symbol definition check for all AmigaOS flavoursYang Tse2007-02-281-1/+25
|
* Define HAVE_SIGNAL_H, HAVE_SIG_ATOMIC_T and HAVE_SIG_ATOMIC_T_VOLATILEYang Tse2006-11-241-0/+2
| | | | as appropriate for platforms that don't have autotools support
* Define HAVE_STRUCT_TIMEVAL as appropriate for platforms that lack autotools ↵Yang Tse2006-10-141-0/+1
| | | | support
* include <malloc.h> only if HAVE_MALLOC_H and NEED_MALLOC_H are both defined.Yang Tse2006-07-111-0/+2
|
* Get qualifier of arg 2 for send() apart into SEND_QUAL_ARG2.Yang Tse2006-07-041-0/+1
|
* Platforms that don't have/run configure need default values in their config ↵Yang Tse2006-07-041-0/+21
| | | | | | | | | | files for: HAVE_GETNAMEINFO, GETNAMEINFO_QUAL_ARG1, GETNAMEINFO_TYPE_ARG1, GETNAMEINFO_TYPE_ARG2, GETNAMEINFO_TYPE_ARG46, GETNAMEINFO_TYPE_ARG7 HAVE_RECV, RECV_TYPE_ARG1, RECV_TYPE_ARG2, RECV_TYPE_ARG3, RECV_TYPE_ARG4, RECV_TYPE_RETV HAVE_SEND, SEND_TYPE_ARG1, SEND_TYPE_ARG2, SEND_TYPE_ARG3, SEND_TYPE_ARG4, SEND_TYPE_RETV
* Diego Casorran patches to make (lib)curl build fine on Amiga againDaniel Stenberg2005-07-131-1/+4
|
* Fixed LDAP library file name bug (KNOWN_BUGS #1). configure now auto-detectsDan Fandrich2005-03-111-0/+2
| | | | | | | | 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.
* Dan Fandrich:Daniel Stenberg2004-12-111-0/+3
| | | | | | | | | | | | | 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.
* use curl_off_t instead of off_t!Daniel Stenberg2004-01-221-1/+1
|
* Diego Casorran's fixes to allow native AmigaOS buildsDaniel Stenberg2004-01-131-0/+5
|
* native AmigaOS support by Diego CasorranDaniel Stenberg2003-12-101-0/+79