manoj 99/09/07 12:58:21
Modified: src CHANGES
src/include ap_config.h
Log:
Allow BeOS to use its native closesocket() call
Submitted by: David Reid <[EMAIL PROTECTED]>
Revision Changes Path
1.1428 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1427
retrieving revision 1.1428
diff -u -d -u -r1.1427 -r1.1428
--- CHANGES 1999/09/01 04:28:56 1.1427
+++ CHANGES 1999/09/07 19:58:14 1.1428
@@ -1,5 +1,8 @@
Changes with Apache 1.3.10
+ *) Allow BeOS to use its native closesocket() call
+ [David Reid <[EMAIL PROTECTED]>]
+
*) More TPF changes. Code reorganization for cleanliness, regex
changes for testing, as well as doc and build updates.
[David McCreedy <[EMAIL PROTECTED]> and others at IBM]
1.269 +2 -0 apache-1.3/src/include/ap_config.h
Index: ap_config.h
===================================================================
RCS file: /home/cvs/apache-1.3/src/include/ap_config.h,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -d -u -r1.268 -r1.269
--- ap_config.h 1999/09/01 04:29:01 1.268
+++ ap_config.h 1999/09/07 19:58:20 1.269
@@ -1059,7 +1059,9 @@
#include <pwd.h>
#include <grp.h>
#include <fcntl.h>
+#ifndef BEOS
#define closesocket(s) close(s)
+#endif
#ifndef O_BINARY
#define O_BINARY (0)
#endif