]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
2002-09-12 H.J. Lu <hjl@lucon.org>
authorhjl <hjl>
Thu, 12 Sep 2002 21:41:09 +0000 (21:41 +0000)
committerhjl <hjl>
Thu, 12 Sep 2002 21:41:09 +0000 (21:41 +0000)
* support/include/nfslib.h (svctcp_socket): Protect it with
HAVE_SVCTCP_SOCKET.
(svcudp_socket): Protect it with HAVE_SVCUDP_SOCKET.

ChangeLog
support/include/nfslib.h

index a7b593ae6a96c7d70a8f562c954afa9de88a1143..00fc995ddbe8017bfbcb8054e021d57a7a0f46f0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-12  H.J. Lu <hjl@lucon.org>
+
+       * support/include/nfslib.h (svctcp_socket): Protect it with
+       HAVE_SVCTCP_SOCKET.
+       (svcudp_socket): Protect it with HAVE_SVCUDP_SOCKET.
+
 2002-09-12  H.J. Lu <hjl@lucon.org>
 
        * configure.in (VERSION): Set to "1.0.2".
index b95c78263aefbb6118bd8f02508436987d702431..82335fc16417b29432344bb9075d3177d1bde19b 100644 (file)
@@ -125,7 +125,11 @@ struct nfs_fh_len *        getfh_size(struct sockaddr *addr, const char *, int size);
 /* lockd. */
 int                    lockdsvc();
 
+#ifndef HAVE_SVCTCP_SOCKET
 extern                 int svctcp_socket (u_long __number, int __reuse);
+#endif
+#ifndef HAVE_SVCUDP_SOCKET
 extern                 int svcudp_socket (u_long __number, int __reuse);
+#endif
 
 #endif /* NFSLIB_H */