gstein 01/10/27 16:48:25
Modified: . configure.in
Log:
The previous patch was the wrong test. If file_as_socket was unset (empty
string), then it would never get set to 0. That would result in a bad
substitution in apr.h, and then a compile failure with #if statements
because APR_FILES_AS_SOCKETS would be null (rather than 0 or 1).
Instead, the proper fix is if file_as_socket is not specifically set to 0,
then we will turn it on.
Revision Changes Path
1.372 +1 -1 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.371
retrieving revision 1.372
diff -u -r1.371 -r1.372
--- configure.in 2001/10/27 21:54:15 1.371
+++ configure.in 2001/10/27 23:48:25 1.372
@@ -1252,7 +1252,7 @@
AC_MSG_RESULT([$msg])
AC_MSG_CHECKING([if fd == socket on this platform])
-if test "x$file_as_socket" = "x1" ; then
+if test "x$file_as_socket" != "x0" ; then
file_as_socket="1";
echo "yes"
else
|