Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / sysutils / fam / patches / patch-ab
blob18efd87d1bfc78293ad0234393102da104732dc1
1 $NetBSD$
3 --- config.h.in.orig    2003-01-19 16:40:15.000000000 -0800
4 +++ config.h.in
5 @@ -49,9 +49,18 @@
6  /* Define to 1 if you have the <rpc/rpc.h> header file. */
7  #undef HAVE_RPC_RPC_H
8  
9 +/* Define to 1 if you have the <rpc/rpcent.h> header file. */
10 +#undef HAVE_RPC_RPCENT_H
12  /* Define to 1 if you have the `select' function. */
13  #undef HAVE_SELECT
15 +/* Define to 1 if you have the `sysctlbyname' function. */
16 +#undef HAVE_SYSCTLBYNAME
18 +/* Define to 1 if you have the `unsetenv' function. */
19 +#undef HAVE_UNSETENV
21  /* Define to 1 if the system has the type `socklen_t'. */
22  #undef HAVE_SOCKLEN_T
24 @@ -76,6 +85,9 @@
25  /* Define to 1 if `sa_len' is member of `struct sockaddr'. */
26  #undef HAVE_STRUCT_SOCKADDR_SA_LEN
28 +/* Define to 1 if `sun_len' is member of `struct sockaddr_un'. */
29 +#undef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
31  /* Define to 1 if you have the <syslog.h> header file. */
32  #undef HAVE_SYSLOG_H
34 @@ -83,6 +95,9 @@
35     */
36  #undef HAVE_SYS_DIR_H
38 +/* Define to 1 if you have the <sys/filio.h> header file. */
39 +#undef HAVE_SYS_FILIO_H
41  /* Define to 1 if you have the <sys/imon.h> header file. */
42  #undef HAVE_SYS_IMON_H
44 @@ -120,6 +135,15 @@
45  /* Define to 1 if you have the <unistd.h> header file. */
46  #undef HAVE_UNISTD_H
48 +/* Define to 1 if you have the <mntent.h> header file. */
49 +#undef HAVE_MNTENT_H
51 +/* Define to 1 if you have the <sys/mnttab.h> header file. */
52 +#undef HAVE_SYS_MNTTAB_H
54 +/* Define to 1 if you have the <sys/sysmacros.h> header file. */
55 +#undef HAVE_SYS_SYSMACROS_H
57  /* Define to 1 if the system has the type `_Bool'. */
58  #undef HAVE__BOOL
60 @@ -180,3 +204,9 @@
62  /* Define to `int' if <sys/types.h> doesn't define. */
63  #undef uid_t
65 +/* Use standard POSIX type if BSD type is not available */
66 +#if !defined(u_int32_t) && defined(HAVE_INTTYPES_H)
67 +#include <inttypes.h>
68 +typedef uint32_t u_int32_t;
69 +#endif