Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-08-27 | Don't abort configuration if recvfrom() is not available. | Yang Tse | |
2008-07-21 | Change recvfrom's sixth argument data type to the 'historically standard' 'int' | Yang Tse | |
data type for systems where this sixth argument is prototyped as a void pointer. Start of thread: http://curl.haxx.se/mail/lib-2008-07/0153.html | |||
2008-07-21 | Use the sreadfrom() wrapper to replace recvfrom() in our code. | Yang Tse | |
2008-07-17 | RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now defined | Yang Tse | |
to the data type pointed by its respective argument and not the pointer type. | |||
2008-07-16 | Configure process now checks availability of recvfrom() socket function and | Yang Tse | |
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. | |||
2008-05-21 | fix: remove need and definition of HAVE_SOCKLEN_T symbol | Yang Tse | |
2007-10-24 | Windows build targets have socklen_t definition in ws2tcpip.h but some | Yang Tse | |
versions of ws2tcpip.h do not have the definition. It seems that when the socklen_t definition is missing from ws2tcpip.h the definition for INET_ADDRSTRLEN is also missing, and that when one definition is present the other one also is available. | |||
2007-10-17 | actually sync with lib/setup_once.h | Yang Tse | |
2007-10-17 | sync with lib/setup_once.h | Yang Tse | |
2007-04-25 | Steve Little's fixes to allow compilation on VMS 64-bit mode | Yang Tse | |
2007-04-11 | convenience SIG_ATOMIC_T macro definition | Yang Tse | |
2007-04-04 | move WinSock definitions of EBADF, EINTR, EINVAL and EAFNOSUPPORT to ↵ | Yang Tse | |
setup_once.h | |||
2007-02-22 | Check for stdbool.h at configuration stage, and include it if available. | Yang Tse | |
Check for lowercase 'bool' type at configuration stage. If not available provide a suitable replacement with a type definition of 'unsigned char' in setup_once.h Move definitions of TRUE and FALSE to setup_once.h | |||
2007-02-21 | curlassert macro replaced with DEBUGASSERT macro defined in setup_once.h | Yang Tse | |
2007-02-20 | Move header file inclusion logic and definition of timeval | Yang Tse | |
struct for platforms that don't have it to setup_once.h | |||
2007-02-18 | fix ENAMETOOLONG and ENOTEMPTY may already be defined in errno.h | Yang Tse | |
2007-02-17 | Move portable error number symbolic name definitions to setup_once.h | Yang Tse | |
2007-02-15 | introduce uppercase macros SOCKERRNO, SET_SOCKERRNO(), ERRNO and SET_ERRNO() | Yang Tse | |
making them available to any source code file which includes "setup.h". Macro SOCKERRNO / SET_SOCKERRNO() returns / sets the *socket-related* errno (or equivalent) on this platform to hide platform details to code using it. Macro ERRNO / SET_ERRNO() returns / sets the NOT *socket-related* errno (or equivalent) on this platform to hide platform details to code using it. | |||
2007-02-14 | avoid using funtion isblank() and just use our ISBLANK | Yang Tse | |
macro to provide this functionality on all platforms | |||
2007-02-13 | check for isblank() at configuration stage. If not available | Yang Tse | |
provide a suitable replacement for use in our ISBLANK macro | |||
2007-02-13 | use our own ISUPPER and ISLOWER macros | Yang Tse | |
2007-02-13 | use our own ISBLANK macro | Yang Tse | |
2007-02-02 | move DEBUGF macro definition to setup_once.h | Yang Tse | |
2007-01-27 | sync with lib/setup_once.h | Yang Tse | |
2006-11-25 | Make sure RETSIGTYPE is properly defined | Yang Tse | |
2006-11-22 | Added a check in configure that verifies if <signal.h> is available, | Yang Tse | |
defining HAVE_SIGNAL_H if the header is available. Added a check in configure that tests if the sig_atomic_t type is available, defining HAVE_SIG_ATOMIC_T if it is available. Providing a suitable default in setup_once.h if not available. Added a check in configure that tests if the sig_atomic_t type is already defined as volatile, defining HAVE_SIG_ATOMIC_T_VOLATILE if it is available and already defined as volatile. | |||
2006-10-27 | Sync with lib/setup_once.h | Yang Tse | |
2006-10-18 | Sync with lib/setup_once.h | Yang Tse | |
2006-10-18 | Tor's spell fixes | Daniel Stenberg | |
2006-10-18 | Move definition of IS*() macros to setup_once.h | Yang Tse | |
2006-07-31 | Force compilation failure in case macros sread() or swrite() are not defined. | Yang Tse | |
2006-07-28 | First step trying to avoid the multiple header inclusion and recursion ↵ | Yang Tse | |
nightmare. Reintroduce checking for HAVE_MSG_NOSIGNAL in configure script, so that we don't depend on header inclusion order for a valid check. |