trawick 01/03/15 19:22:04
Modified: . apr.dsp libapr.dsp
network_io/unix inet_pton.c
Log:
build inet_pton.c on Win32
Revision Changes Path
1.67 +4 -0 apr/apr.dsp
Index: apr.dsp
===================================================================
RCS file: /home/cvs/apr/apr.dsp,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- apr.dsp 2001/02/03 16:31:07 1.66
+++ apr.dsp 2001/03/16 03:22:02 1.67
@@ -267,6 +267,10 @@
# End Source File
# Begin Source File
+SOURCE=.\network_io\unix\inet_pton.c
+# End Source File
+# Begin Source File
+
SOURCE=.\include\arch\win32\networkio.h
# End Source File
# Begin Source File
1.25 +4 -0 apr/libapr.dsp
Index: libapr.dsp
===================================================================
RCS file: /home/cvs/apr/libapr.dsp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- libapr.dsp 2001/02/03 16:31:08 1.24
+++ libapr.dsp 2001/03/16 03:22:02 1.25
@@ -272,6 +272,10 @@
# End Source File
# Begin Source File
+SOURCE=.\network_io\unix\inet_pton.c
+# End Source File
+# Begin Source File
+
SOURCE=.\include\arch\win32\networkio.h
# End Source File
# Begin Source File
1.5 +4 -0 apr/network_io/unix/inet_pton.c
Index: inet_pton.c
===================================================================
RCS file: /home/cvs/apr/network_io/unix/inet_pton.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- inet_pton.c 2001/03/07 17:41:37 1.4
+++ inet_pton.c 2001/03/16 03:22:04 1.5
@@ -48,6 +48,10 @@
#define __P(x) x
#endif
+#if !defined(EAFNOSUPPORT) && defined(WSAEAFNOSUPPORT)
+#define EAFNOSUPPORT WSAEAFNOSUPPORT
+#endif
+
/*
* WARNING: Don't even consider trying to compile this on a system where
* sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.