summaryrefslogtreecommitdiff
path: root/ext/sockets/config.m4
Commit message (Collapse)AuthorAgeFilesLines
* - Test properly for socketpair inside an extension.Jani Taskinen2007-07-221-5/+1
|
* NetWare LibC don't have socketpair function. So enabling socket_create_pair ↵Anantha Kesari H Y2005-09-231-0/+1
| | | | | | | functionality only if socketpair is available in the host LibC. --Kamesh
* Make php_set_inet6_addr happy with any environment. Use getaddrinfo() if ↵Sara Golemon2003-07-081-0/+3
| | | | available, gethostbyname2() if not, and simply fail if neither is present.
* - Correct stray commitDerick Rethans2003-06-191-1/+1
|
* enable sockets by default.Sterling Hughes2003-06-191-1/+1
|
* - Checks specific to some extension belong in the extension's config.m4foobar2003-04-041-0/+11
|
* Fix bug: #19212foobar2002-09-041-1/+1
|
* As far as I can tell, the AC_CHECK_MEMBER could not succeed,Sascha Schumann2002-05-121-5/+10
| | | | | | | | | | because it does not include <sys/socket.h> which is necessary for the definition of struct msghdr. This include file is not part of ac_includes_default. Regardless, AC_CHECK_MEMBER is a autoconf-2.5x macro and thus we expand it here for 2.13 compatibility.
* Fix build on IRIX for both mips and gccJason Greene2002-05-121-0/+1
|
* extension converted automatically to PHP_NEW_EXTENSION. Manually confirmedSascha Schumann2002-03-121-1/+1
|
* Unified the configure messages.foobar2001-11-301-1/+2
|
* Fix the compile problem on some systems that do not have hstrerror()foobar2001-06-121-0/+1
|
* Cleaned up a bit. Removed some checks for header files that arefoobar2001-04-041-26/+2
| | | | | already checked in configure.in
* Corrected some bugs dealing with compile failures (should now compileChris Vandomelen2000-10-221-1/+0
| | | | | | | | | | | | on most varieties of Linux, and should hopefully fix at least 3 of the compile errors that were discovered). Also modified read() slightly to take an optional parameter as to whether the data was binary or text so it wouldn't stop reading on a newline or null byte received. @- Made read() binary-safe in sockets.c (Chris Vandomelen) @- Attempted fixing some compile failures (Chris Vandomelen) # Hopefully someone will attempt to compile this on other systems, I # have no access to other platforms to compile it on ....
* Clean up the alignment of configure --help outputRasmus Lerdorf2000-10-021-2/+2
|
* Use AC_CHECK_HEADERS(unistd.h) insteadRasmus Lerdorf2000-07-031-1/+1
|
* * Makefile.inChris Vandomelen2000-07-031-0/+38
config.m4 php_sockets.h sockets.c sockets.php: - Added files needed for Unix-style sockets support in PHP.