Skip to content
Snippets Groups Projects
Commit 6e6fbaed authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Now probably works on FreeBSD.

Rev: src/modules/Yp/configure.in:1.4
Rev: src/modules/Yp/yp.c:1.3
parent 705daf5e
Branches
Tags
No related merge requests found
......@@ -5,6 +5,6 @@ sinclude(../module_configure.in)
AC_CHECK_LIB(nsl, gethostbyname)
AC_HAVE_HEADERS(sys/types.h rpcsvc/ypclnt.h rpcsvc/yp_prot.h)
AC_HAVE_HEADERS(sys/types.h rpc/types.h rpc/rpc.h rpc/clnt.h rpcsvc/ypclnt.h rpcsvc/yp_prot.h)
AC_OUTPUT(Makefile,echo FOO >stamp-h )
......@@ -4,6 +4,15 @@
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
#ifdef HAVE_RPC_TYPES_H
#include <rpc/types.h>
#endif /* HAVE_RPC_TYPES_H */
#ifdef HAVE_RPC_RPC_H
#include <rpc/rpc.h>
#endif /* HAVE_RPC_RPC_H */
#ifdef HAVE_RPC_CLNT_H
#include <rpc/clnt.h>
#endif /* HAVE_RPC_CLNT_H */
#include <rpcsvc/ypclnt.h>
#include <rpcsvc/yp_prot.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment