am_defs.h revision 119682
1/*
2 * Copyright (c) 1997-2003 Erez Zadok
3 * Copyright (c) 1990 Jan-Simon Pendry
4 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1990 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Jan-Simon Pendry at Imperial College, London.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 *    must display the following acknowledgment:
21 *      This product includes software developed by the University of
22 *      California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 *    may be used to endorse or promote products derived from this software
25 *    without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 *      %W% (Berkeley) %G%
40 *
41 * $Id: am_defs.h,v 1.15.2.13 2002/12/27 22:45:09 ezk Exp $
42 * $FreeBSD: head/contrib/amd/include/am_defs.h 119682 2003-09-02 15:42:57Z mbr $
43 *
44 */
45
46/*
47 * Definitions that are not specific to the am-utils package, but
48 * are rather generic, and can be used elsewhere.
49 */
50
51#ifndef _AM_DEFS_H
52#define _AM_DEFS_H
53
54/*
55 * Actions to take if ANSI C.
56 */
57#if STDC_HEADERS
58# include <string.h>
59/* for function prototypes */
60# define P(x) x
61# define P_void void
62#else /* not STDC_HEADERS */
63/* empty function prototypes */
64# define P(x) ()
65# define P_void
66# ifndef HAVE_STRCHR
67#  define strchr index
68#  define strrchr rindex
69# endif /* not HAVE_STRCHR */
70char *strchr(), *strrchr(), *strdup();
71#endif /* not STDC_HEADERS */
72
73/*
74 * Handle gcc __attribute__ if available.
75 */
76#ifndef __attribute__
77/* This feature is available in gcc versions 2.5 and later.  */
78# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
79#  define __attribute__(Spec) /* empty */
80# endif /* __GNUC__ < 2 ... */
81/*
82 * The __-protected variants of `format' and `printf' attributes
83 * are accepted by gcc versions 2.6.4 (effectively 2.7) and later.
84 */
85# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
86#  define __format__ format
87#  define __printf__ printf
88# endif /* __GNUC__ < 2 ... */
89#endif /* not __attribute__ */
90
91/*
92 * How to handle signals of any type
93 */
94#ifdef HAVE_SYS_WAIT_H
95# include <sys/wait.h>
96#endif /* HAVE_SYS_WAIT_H */
97#ifndef WEXITSTATUS
98# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
99#endif /* not WEXITSTATUS */
100#ifndef WIFEXITED
101# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
102#endif /* not WIFEXITED */
103
104/*
105 * Actions to take regarding <time.h> and <sys/time.h>.
106 */
107#if TIME_WITH_SYS_TIME
108# include <sys/time.h>
109# include <time.h>
110#else /* not TIME_WITH_SYS_TIME */
111# if HAVE_SYS_TIME_H
112#  include <sys/time.h>
113# else /* not HAVE_SYS_TIME_H */
114#  include <time.h>
115# endif /* not HAVE_SYS_TIME_H */
116#endif /* not TIME_WITH_SYS_TIME */
117
118/*
119 * Actions to take if <machine/endian.h> exists.
120 */
121#ifdef HAVE_MACHINE_ENDIAN_H
122# include <machine/endian.h>
123#endif /* HAVE_MACHINE_ENDIAN_H */
124
125/*
126 * Big-endian or little-endian?
127 */
128#ifdef WORDS_BIGENDIAN
129# define ARCH_ENDIAN "big"
130#else /* not WORDS_BIGENDIAN */
131# define ARCH_ENDIAN "little"
132#endif /* not WORDS_BIGENDIAN */
133
134/*
135 * Actions to take if HAVE_SYS_TYPES_H is defined.
136 */
137#if HAVE_SYS_TYPES_H
138# include <sys/types.h>
139#endif /* HAVE_SYS_TYPES_H */
140
141/*
142 * Actions to take if HAVE_UNISTD_H is defined.
143 */
144#if HAVE_UNISTD_H
145# include <unistd.h>
146#endif /* HAVE_UNISTD_H */
147
148/* after <unistd.h>, check if this is a POSIX.1 system */
149#ifdef _POSIX_VERSION
150/* Code for POSIX.1 systems. */
151#endif /* _POSIX_VERSION */
152
153/*
154 * Variable length argument lists.
155 * Must use only one of the two!
156 */
157#ifdef HAVE_STDARG_H
158# include <stdarg.h>
159/*
160 * On Solaris 2.6, <sys/varargs.h> is included in <sys/fs/autofs.h>
161 * So this ensures that only one is included.
162 */
163# ifndef _SYS_VARARGS_H
164#  define _SYS_VARARGS_H
165# endif /* not _SYS_VARARGS_H */
166#else /* not HAVE_STDARG_H */
167# ifdef HAVE_VARARGS_H
168#  include <varargs.h>
169# endif /* HAVE_VARARGS_H */
170#endif /* not HAVE_STDARG_H */
171
172/*
173 * Pick the right header file and macros for directory processing functions.
174 */
175#if HAVE_DIRENT_H
176# include <dirent.h>
177# define NAMLEN(dirent) strlen((dirent)->d_name)
178#else /* not HAVE_DIRENT_H */
179# define dirent direct
180# define NAMLEN(dirent) (dirent)->d_namlen
181# if HAVE_SYS_NDIR_H
182#  include <sys/ndir.h>
183# endif /* HAVE_SYS_NDIR_H */
184# if HAVE_SYS_DIR_H
185#  include <sys/dir.h>
186# endif /* HAVE_SYS_DIR_H */
187# if HAVE_NDIR_H
188#  include <ndir.h>
189# endif /* HAVE_NDIR_H */
190#endif /* not HAVE_DIRENT_H */
191
192/*
193 * Actions to take if HAVE_FCNTL_H is defined.
194 */
195#if HAVE_FCNTL_H
196# include <fcntl.h>
197#endif /* HAVE_FCNTL_H */
198
199/*
200 * Actions to take if HAVE_MEMORY_H is defined.
201 */
202#if HAVE_MEMORY_H
203# include <memory.h>
204#endif /* HAVE_MEMORY_H */
205
206/*
207 * Actions to take if HAVE_SYS_FILE_H is defined.
208 */
209#if HAVE_SYS_FILE_H
210# include <sys/file.h>
211#endif /* HAVE_SYS_FILE_H */
212
213/*
214 * Actions to take if HAVE_SYS_IOCTL_H is defined.
215 */
216#if HAVE_SYS_IOCTL_H
217# include <sys/ioctl.h>
218#endif /* HAVE_SYS_IOCTL_H */
219
220/*
221 * Actions to take if HAVE_SYSLOG_H or HAVE_SYS_SYSLOG_H is defined.
222 */
223#ifdef HAVE_SYSLOG_H
224# include <syslog.h>
225#else /* not HAVE_SYSLOG_H */
226# if HAVE_SYS_SYSLOG_H
227#  include <sys/syslog.h>
228# endif /* HAVE_SYS_SYSLOG_H */
229#endif /* HAVE_SYSLOG_H */
230
231/*
232 * Actions to take if <sys/param.h> exists.
233 */
234#ifdef HAVE_SYS_PARAM_H
235# include <sys/param.h>
236#endif /* HAVE_SYS_PARAM_H */
237
238/*
239 * Actions to take if <sys/socket.h> exists.
240 */
241#ifdef HAVE_SYS_SOCKET_H
242# include <sys/socket.h>
243#endif /* HAVE_SYS_SOCKET_H */
244
245/*
246 * Actions to take if <rpc/rpc.h> exists.
247 */
248#ifdef HAVE_RPC_RPC_H
249/*
250 * Turn on PORTMAP, so that additional header files would get included
251 * and the important definition for UDPMSGSIZE is included too.
252 */
253# ifndef PORTMAP
254#  define PORTMAP
255# endif /* not PORTMAP */
256# include <rpc/rpc.h>
257# ifndef XDRPROC_T_TYPE
258typedef bool_t (*xdrproc_t) __P ((XDR *, __ptr_t, ...));
259# endif /* not XDRPROC_T_TYPE */
260#endif /* HAVE_RPC_RPC_H */
261
262/*
263 * Actions to take if <rpc/types.h> exists.
264 */
265#ifdef HAVE_RPC_TYPES_H
266# include <rpc/types.h>
267#endif /* HAVE_RPC_TYPES_H */
268
269/*
270 * Actions to take if <rpc/xdr.h> exists.
271 */
272/* Prevent multiple inclusion on Ultrix 4 */
273#if defined(HAVE_RPC_XDR_H) && !defined(__XDR_HEADER__)
274# include <rpc/xdr.h>
275#endif /* defined(HAVE_RPC_XDR_H) && !defined(__XDR_HEADER__) */
276
277/*
278 * Actions to take if <malloc.h> exists.
279 */
280#ifdef HAVE_MALLOC_H
281# include <malloc.h>
282#endif /* HAVE_MALLOC_H */
283
284/*
285 * Actions to take if <mntent.h> exists.
286 */
287#ifdef HAVE_MNTENT_H
288/* some systems need <stdio.h> before <mntent.h> is included */
289# ifdef HAVE_STDIO_H
290#  include <stdio.h>
291# endif /* HAVE_STDIO_H */
292# include <mntent.h>
293#endif /* HAVE_MNTENT_H */
294
295/*
296 * Actions to take if <sys/errno.h> exists.
297 */
298#ifdef HAVE_SYS_ERRNO_H
299# include <sys/errno.h>
300extern int errno;
301#endif /* HAVE_SYS_ERRNO_H */
302
303/*
304 * Actions to take if <sys/fsid.h> exists.
305 */
306#ifdef HAVE_SYS_FSID_H
307# include <sys/fsid.h>
308#endif /* HAVE_SYS_FSID_H */
309
310/*
311 * Actions to take if <sys/utsname.h> exists.
312 */
313#ifdef HAVE_SYS_UTSNAME_H
314# include <sys/utsname.h>
315#endif /* HAVE_SYS_UTSNAME_H */
316
317/*
318 * Actions to take if <sys/mntent.h> exists.
319 */
320#ifdef HAVE_SYS_MNTENT_H
321# include <sys/mntent.h>
322#endif /* HAVE_SYS_MNTENT_H */
323
324/*
325 * Actions to take if <ndbm.h> or <db1/ndbm.h> exist.
326 * Should be included before <rpcsvc/yp_prot.h> because on some systems
327 * like Linux, it also defines "struct datum".
328 */
329#ifdef HAVE_NDBM_H
330# include <ndbm.h>
331# ifndef DATUM
332/* ensure that struct datum is not included again from <rpcsvc/yp_prot.h> */
333#  define DATUM
334# endif /* not DATUM */
335#else /* not HAVE_NDBM_H */
336# ifdef HAVE_DB1_NDBM_H
337#  include <db1/ndbm.h>
338#  ifndef DATUM
339/* ensure that struct datum is not included again from <rpcsvc/yp_prot.h> */
340#   define DATUM
341#  endif /* not DATUM */
342# endif /* HAVE_DB1_NDBM_H */
343#endif /* HAVE_NDBM_H */
344
345/*
346 * Actions to take if <net/errno.h> exists.
347 */
348#ifdef HAVE_NET_ERRNO_H
349# include <net/errno.h>
350#endif /* HAVE_NET_ERRNO_H */
351
352/*
353 * Actions to take if <net/route.h> exists.
354 */
355#ifdef HAVE_NET_ROUTE_H
356# include <net/route.h>
357#endif /* HAVE_NET_ROUTE_H */
358
359/*
360 * Actions to take if <sys/mbuf.h> exists.
361 */
362#ifdef HAVE_SYS_MBUF_H
363# include <sys/mbuf.h>
364/*
365 * OSF4 (DU-4.0) defines m_next and m_data also in <sys/mount.h> so I must
366 # undefine them here to avoid conflicts.
367 */
368# ifdef m_next
369#  undef m_next
370# endif /* m_next */
371# ifdef m_data
372#  undef m_data
373# endif /* m_data */
374/*
375 * AIX 3 defines MFREE and m_flags also in <sys/mount.h>.
376 */
377# ifdef m_flags
378#  undef m_flags
379# endif /* m_flags */
380# ifdef MFREE
381#  undef MFREE
382# endif /* MFREE */
383#endif /* HAVE_SYS_MBUF_H */
384
385/*
386 * Actions to take if <net/if.h> exists.
387 */
388#ifdef HAVE_NET_IF_H
389# include <net/if.h>
390#endif /* HAVE_NET_IF_H */
391
392/*
393 * Actions to take if <netdb.h> exists.
394 */
395#ifdef HAVE_NETDB_H
396# include <netdb.h>
397#endif /* HAVE_NETDB_H */
398
399/*
400 * Actions to take if <netdir.h> exists.
401 */
402#ifdef HAVE_NETDIR_H
403# include <netdir.h>
404#endif /* HAVE_NETDIR_H */
405
406/*
407 * Actions to take if <net/if_var.h> exists.
408 */
409#ifdef HAVE_NET_IF_VAR_H
410# include <net/if_var.h>
411#endif /* HAVE_NET_IF_VAR_H */
412
413/*
414 * Actions to take if <netinet/if_ether.h> exists.
415 */
416#ifdef HAVE_NETINET_IF_ETHER_H
417# include <netinet/if_ether.h>
418#endif /* HAVE_NETINET_IF_ETHER_H */
419
420/*
421 * Actions to take if <netinet/in.h> exists.
422 */
423#ifdef HAVE_NETINET_IN_H
424# include <netinet/in.h>
425#endif /* HAVE_NETINET_IN_H */
426
427/*
428 * Actions to take if <rpcsvc/yp_prot.h> exists.
429 */
430#ifdef HAVE_RPCSVC_YP_PROT_H
431# ifdef HAVE_BAD_HEADERS
432/* avoid circular dependency in aix 4.3 with <rpcsvc/ypclnt.h> */
433struct ypall_callback;
434# endif /* HAVE_BAD_HEADERS */
435# include <rpcsvc/yp_prot.h>
436#endif /* HAVE_RPCSVC_YP_PROT_H */
437
438/*
439 * Actions to take if <rpcsvc/ypclnt.h> exists.
440 */
441#ifdef HAVE_RPCSVC_YPCLNT_H
442# include <rpcsvc/ypclnt.h>
443#endif /* HAVE_RPCSVC_YPCLNT_H */
444
445/*
446 * Actions to take if <sys/ucred.h> exists.
447 */
448#ifdef HAVE_SYS_UCRED_H
449# include <sys/ucred.h>
450#endif /* HAVE_SYS_UCRED_H */
451
452
453/*
454 * Actions to take if <sys/mount.h> exists.
455 */
456#ifdef HAVE_SYS_MOUNT_H
457/*
458 * Some operating systems must define these variables to get
459 * NFS and other definitions included.
460 */
461# ifndef NFSCLIENT
462#  define NFSCLIENT 1
463# endif /* not NFSCLIENT */
464# ifndef NFS
465#  define NFS 1
466# endif /* not NFS */
467# ifndef PCFS
468#  define PCFS 1
469# endif /* not PCFS */
470# ifndef LOFS
471#  define LOFS 1
472# endif /* not LOFS */
473# ifndef RFS
474#  define RFS 1
475# endif /* not RFS */
476# ifndef MSDOSFS
477#  define MSDOSFS 1
478# endif /* not MSDOSFS */
479# ifndef MFS
480#  define MFS 1
481# endif /* not MFS */
482# ifndef CD9660
483#  define CD9660 1
484# endif /* not CD9660 */
485# include <sys/mount.h>
486#endif /* HAVE_SYS_MOUNT_H */
487
488#ifdef HAVE_SYS_VMOUNT_H
489# include <sys/vmount.h>
490#endif /* HAVE_SYS_VMOUNT_H */
491
492/*
493 * Actions to take if <linux/fs.h> exists.
494 * There is no point in including this on a glibc2 system,
495 * we're only asking for trouble
496 */
497#if defined HAVE_LINUX_FS_H && (!defined __GLIBC__ || __GLIBC__ < 2)
498/*
499 * There are various conflicts in definitions between RedHat Linux, newer
500 * 2.2 kernels, and <netinet/in.h> and <linux/fs.h>.
501 */
502# ifdef HAVE_SOCKETBITS_H
503/* conflicts with <socketbits.h> */
504#  define _LINUX_SOCKET_H
505#  undef BLKFLSBUF
506#  undef BLKGETSIZE
507#  undef BLKRAGET
508#  undef BLKRASET
509#  undef BLKROGET
510#  undef BLKROSET
511#  undef BLKRRPART
512#  undef MS_MGC_VAL
513#  undef MS_RMT_MASK
514#  if defined(__GLIBC__) && __GLIBC__ >= 2
515/* conflicts with <waitflags.h> */
516#   undef WNOHANG
517#   undef WUNTRACED
518#  endif /* defined(__GLIBC__) && __GLIBC__ >= 2 */
519/* conflicts with <statfsbuf.h> */
520#  define _SYS_STATFS_H
521# endif /* HAVE_SOCKETBITS_H */
522
523# ifdef _SYS_WAIT_H
524#  if defined(__GLIBC__) && __GLIBC__ >= 2
525/* conflicts with <bits/waitflags.h> (RedHat/Linux 6.0 and kernels 2.2 */
526#   undef WNOHANG
527#   undef WUNTRACED
528#  endif /* defined(__GLIBC__) && __GLIBC__ >= 2 */
529# endif /* _SYS_WAIT_H */
530
531# ifdef HAVE_LINUX_POSIX_TYPES_H
532#  include <linux/posix_types.h>
533# endif /* HAVE_LINUX_POSIX_TYPES_H */
534# ifndef _LINUX_BYTEORDER_GENERIC_H
535#  define _LINUX_BYTEORDER_GENERIC_H
536# endif /* _LINUX_BYTEORDER_GENERIC_H */
537/* conflicts with <sys/mount.h> in 2.[12] kernels */
538# ifdef _SYS_MOUNT_H
539#  undef BLKFLSBUF
540#  undef BLKGETSIZE
541#  undef BLKRAGET
542#  undef BLKRASET
543#  undef BLKROGET
544#  undef BLKROSET
545#  undef BLKRRPART
546#  undef BLOCK_SIZE
547#  undef MS_MANDLOCK
548#  undef MS_MGC_VAL
549#  undef MS_NOATIME
550#  undef MS_NODEV
551#  undef MS_NODIRATIME
552#  undef MS_NOEXEC
553#  undef MS_NOSUID
554#  undef MS_RDONLY
555#  undef MS_REMOUNT
556#  undef MS_RMT_MASK
557#  undef MS_SYNCHRONOUS
558#  undef S_APPEND
559#  undef S_IMMUTABLE
560/* conflicts with <statfsbuf.h> */
561#  define _SYS_STATFS_H
562# endif /* _SYS_MOUNT_H */
563# ifndef _LINUX_STRING_H_
564#  define _LINUX_STRING_H_
565# endif /* not _LINUX_STRING_H_ */
566# ifdef HAVE_LINUX_KDEV_T_H
567#  define __KERNEL__
568#  include <linux/kdev_t.h>
569#  undef __KERNEL__
570# endif /* HAVE_LINUX_KDEV_T_H */
571# ifdef HAVE_LINUX_LIST_H
572#  define __KERNEL__
573#  include <linux/list.h>
574#  undef __KERNEL__
575# endif /* HAVE_LINUX_LIST_H */
576# include <linux/fs.h>
577#endif /* HAVE_LINUX_FS_H && (!__GLIBC__ || __GLIBC__ < 2) */
578
579#ifdef HAVE_CDFS_CDFS_MOUNT_H
580# include <cdfs/cdfs_mount.h>
581#endif /* HAVE_CDFS_CDFS_MOUNT_H */
582
583#ifdef HAVE_CDFS_CDFSMOUNT_H
584# include <cdfs/cdfsmount.h>
585#endif /* HAVE_CDFS_CDFSMOUNT_H */
586
587/*
588 * Actions to take if <linux/auto_fs.h> exists.
589 * We really don't want <linux/fs.h> pulled in here
590 */
591#ifndef _LINUX_FS_H
592#define _LINUX_FS_H
593#endif /* _LINUX_FS_H */
594#ifdef HAVE_LINUX_AUTO_FS_H
595# include <linux/auto_fs.h>
596#endif /* HAVE_LINUX_AUTO_FS_H */
597
598/*
599 * NFS PROTOCOL HEADER FILES:
600 */
601
602/*
603 * Actions to take if <nfs/export.h> exists.
604 */
605#ifdef HAVE_NFS_EXPORT_H
606# include <nfs/export.h>
607#endif /* HAVE_NFS_EXPORT_H */
608
609/****************************************************************************
610 ** IMPORTANT!!!							   **
611 ** We always include am-util's amu_nfs_prot.h.				   **
612 ** That is actually defined in "conf/nfs_prot/nfs_prot_${host_os_name}.h" **
613 ****************************************************************************/
614#include <amu_nfs_prot.h>
615
616/*
617 * DO NOT INCLUDE THESE FILES:
618 * They conflicts with other NFS headers and are generally not needed.
619 */
620#ifdef DO_NOT_INCLUDE
621# ifdef HAVE_NFS_NFS_CLNT_H
622#  include <nfs/nfs_clnt.h>
623# endif /* HAVE_NFS_NFS_CLNT_H */
624# ifdef HAVE_LINUX_NFS_H
625#  include <linux/nfs.h>
626# endif /* HAVE_LINUX_NFS_H */
627#endif /* DO NOT INCLUDE */
628
629/*
630 * Actions to take if one of the nfs headers exists.
631 */
632#ifdef HAVE_NFS_NFS_GFS_H
633# include <nfs/nfs_gfs.h>
634#endif /* HAVE_NFS_NFS_GFS_H */
635#ifdef HAVE_NFS_MOUNT_H
636# include <nfs/mount.h>
637#endif /* HAVE_NFS_MOUNT_H */
638#ifdef HAVE_NFS_NFS_MOUNT_H_off
639/* broken on nextstep3 (includes non-existing headers) */
640# include <nfs/nfs_mount.h>
641#endif /* HAVE_NFS_NFS_MOUNT_H */
642#ifdef HAVE_NFS_PATHCONF_H
643# include <nfs/pathconf.h>
644#endif /* HAVE_NFS_PATHCONF_H */
645#ifdef HAVE_SYS_FS_NFS_MOUNT_H
646# include <sys/fs/nfs/mount.h>
647#endif /* HAVE_SYS_FS_NFS_MOUNT_H */
648#ifdef HAVE_SYS_FS_NFS_NFS_CLNT_H
649# include <sys/fs/nfs/nfs_clnt.h>
650#endif /* HAVE_SYS_FS_NFS_NFS_CLNT_H */
651#ifdef HAVE_SYS_FS_NFS_CLNT_H
652# include <sys/fs/nfs_clnt.h>
653#endif /* HAVE_SYS_FS_NFS_CLNT_H */
654#ifdef HAVE_LINUX_NFS_MOUNT_H
655# define _LINUX_NFS_H
656# define _LINUX_NFS2_H
657# define _LINUX_NFS3_H
658# define _LINUX_NFS_FS_H
659# define _LINUX_IN_H
660# include <linux/nfs_mount.h>
661#endif /* HAVE_LINUX_NFS_MOUNT_H */
662
663/*
664 * Actions to take if <pwd.h> exists.
665 */
666#ifdef HAVE_PWD_H
667# include <pwd.h>
668#endif /* HAVE_PWD_H */
669
670/*
671 * Actions to take if <hesiod.h> exists.
672 */
673#ifdef HAVE_HESIOD_H
674# include <hesiod.h>
675#endif /* HAVE_HESIOD_H */
676
677/*
678 * Actions to take if <lber.h> exists.
679 * This header file is required before <ldap.h> can be included.
680 */
681#ifdef HAVE_LBER_H
682# include <lber.h>
683#endif /* HAVE_LBER_H */
684
685/*
686 * Actions to take if <ldap.h> exists.
687 */
688#ifdef HAVE_LDAP_H
689# include <ldap.h>
690#endif /* HAVE_LDAP_H */
691
692/*
693 * Actions to take if <arpa/nameser.h> exists.
694 * Should be included before <resolv.h>.
695 */
696#ifdef HAVE_ARPA_NAMESER_H
697# ifdef NOERROR
698#  undef NOERROR
699# endif /* NOERROR */
700/*
701 * Conflicts with <sys/tpicommon.h> which is included from <sys/tiuser.h>
702 * on Solaris 2.6 systems.  So undefine it first.
703 */
704# ifdef T_UNSPEC
705#  undef T_UNSPEC
706# endif /* T_UNSPEC */
707# include <arpa/nameser.h>
708#endif /* HAVE_ARPA_NAMESER_H */
709
710/*
711 * Actions to take if <arpa/inet.h> exists.
712 */
713#ifdef HAVE_ARPA_INET_H
714# ifdef HAVE_BAD_HEADERS
715/* aix 4.3: avoid including <net/if_dl.h> */
716struct sockaddr_dl;
717# endif /* HAVE_BAD_HEADERS */
718# include <arpa/inet.h>
719#endif /* HAVE_ARPA_INET_H */
720
721/*
722 * Actions to take if <resolv.h> exists.
723 */
724#ifdef HAVE_RESOLV_H
725# include <resolv.h>
726#endif /* HAVE_RESOLV_H */
727
728/*
729 * Actions to take if <sys/uio.h> exists.
730 */
731#ifdef HAVE_SYS_UIO_H
732# include <sys/uio.h>
733#endif /* HAVE_SYS_UIO_H */
734
735/*
736 * Actions to take if <sys/fs/cachefs_fs.h> exists.
737 */
738#ifdef HAVE_SYS_FS_CACHEFS_FS_H
739# include <sys/fs/cachefs_fs.h>
740#endif /* HAVE_SYS_FS_CACHEFS_FS_H */
741
742/*
743 * Actions to take if <sys/fs/pc_fs.h> exists.
744 */
745#ifdef HAVE_SYS_FS_PC_FS_H
746# include <sys/fs/pc_fs.h>
747#endif /* HAVE_SYS_FS_PC_FS_H */
748
749/*
750 * Actions to take if <msdosfs/msdosfsmount.h> exists.
751 */
752#ifdef HAVE_MSDOSFS_MSDOSFSMOUNT_H
753# include <msdosfs/msdosfsmount.h>
754#endif /* HAVE_MSDOSFS_MSDOSFSMOUNT_H */
755#ifdef HAVE_FS_MSDOSFS_MSDOSFSMOUNT_H
756# include <fs/msdosfs/msdosfsmount.h>
757#endif /* HAVE_FS_MSDOSFS_MSDOSFSMOUNT_H */
758
759/*
760 * Actions to take if <sys/fs/tmp.h> exists.
761 */
762#ifdef HAVE_SYS_FS_TMP_H
763# include <sys/fs/tmp.h>
764#endif /* HAVE_SYS_FS_TMP_H */
765
766/*
767 * Actions to take if <sys/fs/ufs_mount.h> exists.
768 */
769#ifdef HAVE_SYS_FS_UFS_MOUNT_H
770# include <sys/fs/ufs_mount.h>
771#endif /* HAVE_SYS_FS_UFS_MOUNT_H */
772/*
773 * HAVE_UFS_UFS_UFSMOUNT_H should NOT be defined on netbsd/openbsd because it
774 * causes errors with other header files.  Instead, add it to the specific
775 * conf/nfs_prot_*.h file.
776 */
777#ifdef	HAVE_UFS_UFS_UFSMOUNT_H
778# include <ufs/ufs/ufsmount.h>
779#endif	/* HAVE_UFS_UFS_UFSMOUNT_H */
780
781/*
782 * Actions to take if <sys/fs/efs_clnt.h> exists.
783 */
784#ifdef HAVE_SYS_FS_EFS_CLNT_H
785# include <sys/fs/efs_clnt.h>
786#endif /* HAVE_SYS_FS_EFS_CLNT_H */
787
788/*
789 * Actions to take if <sys/fs/xfs_clnt.h> exists.
790 */
791#ifdef HAVE_SYS_FS_XFS_CLNT_H
792# include <sys/fs/xfs_clnt.h>
793#endif /* HAVE_SYS_FS_XFS_CLNT_H */
794
795/*
796 * Actions to take if <assert.h> exists.
797 */
798#ifdef HAVE_ASSERT_H
799# include <assert.h>
800#endif /* HAVE_ASSERT_H */
801
802/*
803 * Actions to take if <cfs.h> exists.
804 */
805#ifdef HAVE_CFS_H
806# include <cfs.h>
807#endif /* HAVE_CFS_H */
808
809/*
810 * Actions to take if <cluster.h> exists.
811 */
812#ifdef HAVE_CLUSTER_H
813# include <cluster.h>
814#endif /* HAVE_CLUSTER_H */
815
816/*
817 * Actions to take if <ctype.h> exists.
818 */
819#ifdef HAVE_CTYPE_H
820# include <ctype.h>
821#endif /* HAVE_CTYPE_H */
822
823/*
824 * Actions to take if <errno.h> exists.
825 */
826#ifdef HAVE_ERRNO_H
827# include <errno.h>
828#endif /* HAVE_ERRNO_H */
829
830/*
831 * Actions to take if <grp.h> exists.
832 */
833#ifdef HAVE_GRP_H
834# include <grp.h>
835#endif /* HAVE_GRP_H */
836
837/*
838 * Actions to take if <hsfs/hsfs.h> exists.
839 */
840#ifdef HAVE_HSFS_HSFS_H
841# include <hsfs/hsfs.h>
842#endif /* HAVE_HSFS_HSFS_H */
843
844/*
845 * Actions to take if <cdfs/cdfsmount.h> exists.
846 */
847#ifdef HAVE_CDFS_CDFSMOUNT_H
848# include <cdfs/cdfsmount.h>
849#endif /* HAVE_CDFS_CDFSMOUNT_H */
850
851/*
852 * Actions to take if <isofs/cd9660/cd9660_mount.h> exists.
853 */
854#ifdef HAVE_ISOFS_CD9660_CD9660_MOUNT_H
855# include <isofs/cd9660/cd9660_mount.h>
856#endif /* HAVE_ISOFS_CD9660_CD9660_MOUNT_H */
857
858/*
859 * Actions to take if <mount.h> exists.
860 */
861#ifdef HAVE_MOUNT_H
862# include <mount.h>
863#endif /* HAVE_MOUNT_H */
864
865/*
866 * Actions to take if <nsswitch.h> exists.
867 */
868#ifdef HAVE_NSSWITCH_H
869# include <nsswitch.h>
870#endif /* HAVE_NSSWITCH_H */
871
872/*
873 * Actions to take if <rpc/auth_des.h> exists.
874 */
875#ifdef HAVE_RPC_AUTH_DES_H
876# include <rpc/auth_des.h>
877#endif /* HAVE_RPC_AUTH_DES_H */
878
879/*
880 * Actions to take if <rpc/pmap_clnt.h> exists.
881 */
882#ifdef HAVE_RPC_PMAP_CLNT_H
883# include <rpc/pmap_clnt.h>
884#endif /* HAVE_RPC_PMAP_CLNT_H */
885
886/*
887 * Actions to take if <rpc/pmap_prot.h> exists.
888 */
889#ifdef HAVE_RPC_PMAP_PROT_H
890# include <rpc/pmap_prot.h>
891#endif /* HAVE_RPC_PMAP_PROT_H */
892
893
894/*
895 * Actions to take if <rpcsvc/mount.h> exists.
896 * AIX does not protect against this file doubly included,
897 * so I have to do my own protection here.
898 */
899#ifdef HAVE_RPCSVC_MOUNT_H
900# ifndef _RPCSVC_MOUNT_H
901#  include <rpcsvc/mount.h>
902# endif /* not _RPCSVC_MOUNT_H */
903#endif /* HAVE_RPCSVC_MOUNT_H */
904
905/*
906 * Actions to take if <rpcsvc/nis.h> exists.
907 */
908#ifdef HAVE_RPCSVC_NIS_H
909# include <rpcsvc/nis.h>
910#endif /* HAVE_RPCSVC_NIS_H */
911
912/*
913 * Actions to take if <setjmp.h> exists.
914 */
915#ifdef HAVE_SETJMP_H
916# include <setjmp.h>
917#endif /* HAVE_SETJMP_H */
918
919/*
920 * Actions to take if <signal.h> exists.
921 */
922#ifdef HAVE_SIGNAL_H
923# include <signal.h>
924#endif /* HAVE_SIGNAL_H */
925
926/*
927 * Actions to take if <string.h> exists.
928 */
929#ifdef HAVE_STRING_H
930# include <string.h>
931#endif /* HAVE_STRING_H */
932
933/*
934 * Actions to take if <strings.h> exists.
935 */
936#ifdef HAVE_STRINGS_H
937# include <strings.h>
938#endif /* HAVE_STRINGS_H */
939
940/*
941 * Actions to take if <sys/config.h> exists.
942 */
943#ifdef HAVE_SYS_CONFIG_H
944# include <sys/config.h>
945#endif /* HAVE_SYS_CONFIG_H */
946
947/*
948 * Actions to take if <sys/dg_mount.h> exists.
949 */
950#ifdef HAVE_SYS_DG_MOUNT_H
951# include <sys/dg_mount.h>
952#endif /* HAVE_SYS_DG_MOUNT_H */
953
954/*
955 * Actions to take if <sys/fs_types.h> exists.
956 */
957#ifdef HAVE_SYS_FS_TYPES_H
958/*
959 * Define KERNEL here to avoid multiple definitions of gt_names[] on
960 * Ultrix 4.3.
961 */
962# define KERNEL
963# include <sys/fs_types.h>
964# undef KERNEL
965#endif /* HAVE_SYS_FS_TYPES_H */
966
967/*
968 * Actions to take if <sys/fstyp.h> exists.
969 */
970#ifdef HAVE_SYS_FSTYP_H
971# include <sys/fstyp.h>
972#endif /* HAVE_SYS_FSTYP_H */
973
974/*
975 * Actions to take if <sys/lock.h> exists.
976 */
977#ifdef HAVE_SYS_LOCK_H
978# include <sys/lock.h>
979#endif /* HAVE_SYS_LOCK_H */
980
981/*
982 * Actions to take if <sys/machine.h> exists.
983 */
984#ifdef HAVE_SYS_MACHINE_H
985# include <sys/machine.h>
986#endif /* HAVE_SYS_MACHINE_H */
987
988/*
989 * Actions to take if <sys/mntctl.h> exists.
990 */
991#ifdef HAVE_SYS_MNTCTL_H
992# include <sys/mntctl.h>
993#endif /* HAVE_SYS_MNTCTL_H */
994
995/*
996 * Actions to take if <sys/mnttab.h> exists.
997 */
998#ifdef HAVE_SYS_MNTTAB_H
999# include <sys/mnttab.h>
1000#endif /* HAVE_SYS_MNTTAB_H */
1001
1002/*
1003 * Actions to take if <mnttab.h> exists.
1004 * Do not include it if MNTTAB is already defined because it probably
1005 * came from <sys/mnttab.h> and we do not want conflicting definitions.
1006 */
1007#if defined(HAVE_MNTTAB_H) && !defined(MNTTAB)
1008# include <mnttab.h>
1009#endif /* defined(HAVE_MNTTAB_H) && !defined(MNTTAB) */
1010
1011/*
1012 * Actions to take if <netconfig.h> exists.
1013 */
1014#ifdef HAVE_NETCONFIG_H
1015# include <netconfig.h>
1016/* Some systems (Solaris 2.5.1) don't declare this external */
1017extern char *nc_sperror(void);
1018#endif /* HAVE_NETCONFIG_H */
1019
1020/*
1021 * Actions to take if <sys/netconfig.h> exists.
1022 */
1023#ifdef HAVE_SYS_NETCONFIG_H
1024# include <sys/netconfig.h>
1025#endif /* HAVE_SYS_NETCONFIG_H */
1026
1027/*
1028 * Actions to take if <sys/pathconf.h> exists.
1029 */
1030#ifdef HAVE_SYS_PATHCONF_H
1031# include <sys/pathconf.h>
1032#endif /* HAVE_SYS_PATHCONF_H */
1033
1034/*
1035 * Actions to take if <sys/resource.h> exists.
1036 */
1037#ifdef HAVE_SYS_RESOURCE_H
1038# include <sys/resource.h>
1039#endif /* HAVE_SYS_RESOURCE_H */
1040
1041/*
1042 * Actions to take if <sys/sema.h> exists.
1043 */
1044#ifdef HAVE_SYS_SEMA_H
1045# include <sys/sema.h>
1046#endif /* HAVE_SYS_SEMA_H */
1047
1048/*
1049 * Actions to take if <sys/signal.h> exists.
1050 */
1051#ifdef HAVE_SYS_SIGNAL_H
1052# include <sys/signal.h>
1053#endif /* HAVE_SYS_SIGNAL_H */
1054
1055/*
1056 * Actions to take if <sys/sockio.h> exists.
1057 */
1058#ifdef HAVE_SYS_SOCKIO_H
1059# include <sys/sockio.h>
1060#endif /* HAVE_SYS_SOCKIO_H */
1061
1062/*
1063 * Actions to take if <sys/syscall.h> exists.
1064 */
1065#ifdef HAVE_SYS_SYSCALL_H
1066# include <sys/syscall.h>
1067#endif /* HAVE_SYS_SYSCALL_H */
1068
1069/*
1070 * Actions to take if <sys/syslimits.h> exists.
1071 */
1072#ifdef HAVE_SYS_SYSLIMITS_H
1073# include <sys/syslimits.h>
1074#endif /* HAVE_SYS_SYSLIMITS_H */
1075
1076/*
1077 * Actions to take if <tiuser.h> exists.
1078 */
1079#ifdef HAVE_TIUSER_H
1080/*
1081 * Some systems like AIX have multiple definitions for T_NULL and others
1082 * that are defined first in <arpa/nameser.h>.
1083 */
1084# ifdef HAVE_ARPA_NAMESER_H
1085#  ifdef T_NULL
1086#   undef T_NULL
1087#  endif /* T_NULL */
1088#  ifdef T_UNSPEC
1089#   undef T_UNSPEC
1090#  endif /* T_UNSPEC */
1091#  ifdef T_IDLE
1092#   undef T_IDLE
1093#  endif /* T_IDLE */
1094# endif /* HAVE_ARPA_NAMESER_H */
1095# include <tiuser.h>
1096#endif /* HAVE_TIUSER_H */
1097
1098/*
1099 * Actions to take if <sys/tiuser.h> exists.
1100 */
1101#ifdef HAVE_SYS_TIUSER_H
1102# include <sys/tiuser.h>
1103#endif /* HAVE_SYS_TIUSER_H */
1104
1105/*
1106 * Actions to take if <sys/statfs.h> exists.
1107 */
1108#ifdef HAVE_SYS_STATFS_H
1109# include <sys/statfs.h>
1110#endif /* HAVE_SYS_STATFS_H */
1111
1112/*
1113 * Actions to take if <sys/vfs.h> exists.
1114 */
1115#ifdef HAVE_SYS_VFS_H
1116# include <sys/vfs.h>
1117#endif /* HAVE_SYS_VFS_H */
1118
1119/*
1120 * Actions to take if <sys/vmount.h> exists.
1121 */
1122#ifdef HAVE_SYS_VMOUNT_H
1123# include <sys/vmount.h>
1124#endif /* HAVE_SYS_VMOUNT_H */
1125
1126/*
1127 * Actions to take if <ufs/ufs_mount.h> exists.
1128 */
1129#ifdef HAVE_UFS_UFS_MOUNT_H
1130# include <ufs/ufs_mount.h>
1131#endif /* HAVE_UFS_UFS_MOUNT_H */
1132
1133/*
1134 * Are S_ISDIR, S_ISREG, et al broken?  If not, include <sys/stat.h>.
1135 * Turned off the not using sys/stat.h based on if the macros are
1136 * "broken", because they incorrectly get reported as broken on
1137 * ncr2.
1138 */
1139#ifndef STAT_MACROS_BROKEN_notused
1140/*
1141 * RedHat Linux 4.2 (alpha) has a problem in the headers that causes
1142 * duplicate definitions, and also some other nasty bugs.  Upgrade to Redhat
1143 * 5.0!
1144 */
1145# ifdef HAVE_SYS_STAT_H
1146/* avoid duplicates or conflicts with <linux/stat.h> (RedHat alpha linux) */
1147#  if defined(S_IFREG) && defined(HAVE_STATBUF_H)
1148#   include <statbuf.h>
1149#   undef S_IFBLK
1150#   undef S_IFCHR
1151#   undef S_IFDIR
1152#   undef S_IFIFO
1153#   undef S_IFLNK
1154#   undef S_IFMT
1155#   undef S_IFREG
1156#   undef S_IFSOCK
1157#   undef S_IRGRP
1158#   undef S_IROTH
1159#   undef S_IRUSR
1160#   undef S_IRWXG
1161#   undef S_IRWXO
1162#   undef S_IRWXU
1163#   undef S_ISBLK
1164#   undef S_ISCHR
1165#   undef S_ISDIR
1166#   undef S_ISFIFO
1167#   undef S_ISGID
1168#   undef S_ISLNK
1169#   undef S_ISREG
1170#   undef S_ISSOCK
1171#   undef S_ISUID
1172#   undef S_ISVTX
1173#   undef S_IWGRP
1174#   undef S_IWOTH
1175#   undef S_IWUSR
1176#   undef S_IXGRP
1177#   undef S_IXOTH
1178#   undef S_IXUSR
1179#  endif /* defined(S_IFREG) && defined(HAVE_STATBUF_H) */
1180#  include <sys/stat.h>
1181# endif /* HAVE_SYS_STAT_H */
1182#endif /* not STAT_MACROS_BROKEN_notused */
1183
1184/*
1185 * Actions to take if <stdio.h> exists.
1186 */
1187#ifdef HAVE_STDIO_H
1188# include <stdio.h>
1189#endif /* HAVE_STDIO_H */
1190
1191/*
1192 * Actions to take if <stdlib.h> exists.
1193 */
1194#ifdef HAVE_STDLIB_H
1195# include <stdlib.h>
1196#endif /* HAVE_STDLIB_H */
1197
1198/*
1199 * Actions to take if <regex.h> exists.
1200 */
1201#ifdef HAVE_REGEX_H
1202# include <regex.h>
1203#endif /* HAVE_REGEX_H */
1204
1205
1206/****************************************************************************/
1207/*
1208 * Specific macros we're looking for.
1209 */
1210#ifndef HAVE_MEMSET
1211# ifdef HAVE_BZERO
1212#  define	memset(ptr, val, len)	bzero((ptr), (len))
1213# else /* not HAVE_BZERO */
1214#  error Cannot find either memset or bzero!
1215# endif /* not HAVE_BZERO */
1216#endif /* not HAVE_MEMSET */
1217
1218#ifndef HAVE_MEMMOVE
1219# ifdef HAVE_BCOPY
1220#  define	memmove(to, from, len)	bcopy((from), (to), (len))
1221# else /* not HAVE_BCOPY */
1222#  error Cannot find either memmove or bcopy!
1223# endif /* not HAVE_BCOPY */
1224#endif /* not HAVE_MEMMOVE */
1225
1226/*
1227 * memcmp() is more problematic:
1228 * Systems that don't have it, but have bcmp(), will use bcmp() instead.
1229 * Those that have it, but it is bad (SunOS 4 doesn't handle
1230 * 8 bit comparisons correctly), will get to use am_memcmp().
1231 * Otherwise if you have memcmp() and it is good, use it.
1232 */
1233#ifdef HAVE_MEMCMP
1234# ifdef HAVE_BAD_MEMCMP
1235#  define	memcmp		am_memcmp
1236extern int am_memcmp(const voidp s1, const voidp s2, size_t len);
1237# endif /* HAVE_BAD_MEMCMP */
1238#else /* not HAVE_MEMCMP */
1239# ifdef HAVE_BCMP
1240#  define	memcmp(a, b, len)	bcmp((a), (b), (len))
1241# endif /* HAVE_BCMP */
1242#endif /* not HAVE_MEMCMP */
1243
1244#ifndef HAVE_SETEUID
1245# ifdef HAVE_SETRESUID
1246#  define	seteuid(x)		setresuid(-1,(x),-1)
1247# else /* not HAVE_SETRESUID */
1248#  error Cannot find either seteuid or setresuid!
1249# endif /* not HAVE_SETRESUID */
1250#endif /* not HAVE_SETEUID */
1251
1252/*
1253 * Define type of mntent_t.
1254 * Defaults to struct mntent, else struct mnttab.  If neither is found, and
1255 * the operating system does keep not mount tables in the kernel, then flag
1256 * it as an error.  If neither is found and the OS keeps mount tables in the
1257 * kernel, then define our own version of mntent; it will be needed for amd
1258 * to keep its own internal version of the mount tables.
1259 */
1260#ifdef HAVE_STRUCT_MNTENT
1261typedef struct mntent mntent_t;
1262#else /* not HAVE_STRUCT_MNTENT */
1263# ifdef HAVE_STRUCT_MNTTAB
1264typedef struct mnttab mntent_t;
1265/* map struct mnttab field names to struct mntent field names */
1266#  define mnt_fsname	mnt_special
1267#  define mnt_dir	mnt_mountp
1268#  define mnt_opts	mnt_mntopts
1269#  define mnt_type	mnt_fstype
1270# else /* not HAVE_STRUCT_MNTTAB */
1271#  ifdef MOUNT_TABLE_ON_FILE
1272#   error Could not find definition for struct mntent or struct mnttab!
1273#  else /* not MOUNT_TABLE_ON_FILE */
1274typedef struct _am_mntent {
1275  char	*mnt_fsname;		/* name of mounted file system */
1276  char	*mnt_dir;		/* file system path prefix */
1277  char	*mnt_type;		/* MNTTAB_TYPE_* */
1278  char	*mnt_opts;		/* MNTTAB_OPT_* */
1279  int	mnt_freq;		/* dump frequency, in days */
1280  int	mnt_passno;		/* pass number on parallel fsck */
1281} mntent_t;
1282#  endif /* not MOUNT_TABLE_ON_FILE */
1283# endif /* not HAVE_STRUCT_MNTTAB */
1284#endif /* not HAVE_STRUCT_MNTENT */
1285
1286
1287/*
1288 * Complete external definitions missing from some systems.
1289 */
1290
1291#ifndef HAVE_EXTERN_SYS_ERRLIST
1292extern const char *const sys_errlist[];
1293#endif /* not HAVE_EXTERN_SYS_ERRLIST */
1294
1295#ifndef HAVE_EXTERN_OPTARG
1296extern char *optarg;
1297extern int optind;
1298#endif /* not HAVE_EXTERN_OPTARG */
1299
1300#if defined(HAVE_CLNT_SPCREATEERROR) && !defined(HAVE_EXTERN_CLNT_SPCREATEERROR)
1301extern char *clnt_spcreateerror(const char *s);
1302#endif /* defined(HAVE_CLNT_SPCREATEERROR) && !defined(HAVE_EXTERN_CLNT_SPCREATEERROR) */
1303
1304#if defined(HAVE_CLNT_SPERRNO) && !defined(HAVE_EXTERN_CLNT_SPERRNO)
1305extern char *clnt_sperrno(const enum clnt_stat num);
1306#endif /* defined(HAVE_CLNT_SPERRNO) && !defined(HAVE_EXTERN_CLNT_SPERRNO) */
1307
1308#ifndef HAVE_EXTERN_FREE
1309extern void free(voidp);
1310#endif /* not HAVE_EXTERN_FREE */
1311
1312#if defined(HAVE_GET_MYADDRESS) && !defined(HAVE_EXTERN_GET_MYADDRESS)
1313extern void get_myaddress(struct sockaddr_in *addr);
1314#endif /* defined(HAVE_GET_MYADDRESS) && !defined(HAVE_EXTERN_GET_MYADDRESS) */
1315
1316#if defined(HAVE_GETDOMAINNAME) && !defined(HAVE_EXTERN_GETDOMAINNAME)
1317# if defined(HAVE_MAP_NIS) || defined(HAVE_MAP_NISPLUS)
1318extern int getdomainname(char *name, int namelen);
1319# endif /* defined(HAVE_MAP_NIS) || defined(HAVE_MAP_NISPLUS) */
1320#endif /* defined(HAVE_GETDOMAINNAME) && !defined(HAVE_EXTERN_GETDOMAINNAME) */
1321
1322#if defined(HAVE_GETDTABLESIZE) && !defined(HAVE_EXTERN_GETDTABLESIZE)
1323extern int getdtablesize(void);
1324#endif /* defined(HAVE_GETDTABLESIZE) && !defined(HAVE_EXTERN_GETDTABLESIZE) */
1325
1326#if defined(HAVE_GETHOSTNAME) && !defined(HAVE_EXTERN_GETHOSTNAME)
1327extern int gethostname(char *name, int namelen);
1328#endif /* defined(HAVE_GETHOSTNAME) && !defined(HAVE_EXTERN_GETHOSTNAME) */
1329
1330#ifndef HAVE_EXTERN_GETLOGIN
1331extern char *getlogin(void);
1332#endif /* not HAVE_EXTERN_GETLOGIN */
1333
1334#if defined(HAVE_GETPAGESIZE) && !defined(HAVE_EXTERN_GETPAGESIZE)
1335extern int getpagesize(void);
1336#endif /* defined(HAVE_GETPAGESIZE) && !defined(HAVE_EXTERN_GETPAGESIZE) */
1337
1338#ifndef HAVE_EXTERN_GETWD
1339extern char *getwd(char *s);
1340#endif /* not HAVE_EXTERN_GETWD */
1341
1342#ifndef HAVE_EXTERN_INNETGR
1343extern int innetgr(char *, char *, char *, char *);
1344#endif /* not HAVE_EXTERN_INNETGR */
1345
1346#if defined(HAVE_MKSTEMP) && !defined(HAVE_EXTERN_MKSTEMP)
1347extern int mkstemp(char *);
1348#endif /* defined(HAVE_MKSTEMP) && !defined(HAVE_EXTERN_MKSTEMP) */
1349
1350#ifndef HAVE_EXTERN_SBRK
1351extern caddr_t sbrk(int incr);
1352#endif /* not HAVE_EXTERN_SBRK */
1353
1354#if defined(HAVE_SETEUID) && !defined(HAVE_EXTERN_SETEUID)
1355extern int seteuid(uid_t euid);
1356#endif /* not defined(HAVE_SETEUID) && !defined(HAVE_EXTERN_SETEUID) */
1357
1358#if defined(HAVE_SETITIMER) && !defined(HAVE_EXTERN_SETITIMER)
1359extern int setitimer(int, struct itimerval *, struct itimerval *);
1360#endif /* defined(HAVE_SETITIMER) && !defined(HAVE_EXTERN_SETITIMER) */
1361
1362#ifndef HAVE_EXTERN_STRCASECMP
1363/*
1364 * define this extern even if function does not exist, for it will
1365 * be filled in by libamu/strcasecmp.c
1366 */
1367extern int strcasecmp(const char *s1, const char *s2);
1368#endif /* not HAVE_EXTERN_STRCASECMP */
1369
1370#ifndef HAVE_EXTERN_STRDUP
1371/*
1372 * define this extern even if function does not exist, for it will
1373 * be filled in by libamu/strdup.c
1374 */
1375extern char *strdup(const char *s);
1376#endif /* not HAVE_EXTERN_STRDUP */
1377
1378#if defined(HAVE_STRSTR) && !defined(HAVE_EXTERN_STRSTR)
1379extern char *strstr(const char *s1, const char *s2);
1380#endif /* defined(HAVE_STRSTR) && !defined(HAVE_EXTERN_STRSTR) */
1381
1382#if defined(HAVE_USLEEP) && !defined(HAVE_EXTERN_USLEEP)
1383extern int usleep(u_int useconds);
1384#endif /* defined(HAVE_USLEEP) && !defined(HAVE_EXTERN_USLEEP) */
1385
1386#ifndef HAVE_EXTERN_UALARM
1387extern u_int ualarm(u_int usecs, u_int interval);
1388#endif /* not HAVE_EXTERN_UALARM */
1389
1390#if defined(HAVE_WAIT3) && !defined(HAVE_EXTERN_WAIT3)
1391extern int wait3(int *statusp, int options, struct rusage *rusage);
1392#endif /* defined(HAVE_WAIT3) && !defined(HAVE_EXTERN_WAIT3) */
1393
1394#if defined(HAVE_VSNPRINTF) && !defined(HAVE_EXTERN_VSNPRINTF)
1395extern int vsnprintf(char *, int, const char *, ...);
1396#endif /* defined(HAVE_VSNPRINTF) && !defined(HAVE_EXTERN_VSNPRINTF) */
1397
1398#ifndef HAVE_EXTERN_XDR_CALLMSG
1399extern bool_t xdr_callmsg(XDR *xdrs, struct rpc_msg *msg);
1400#endif /* not HAVE_EXTERN_XDR_CALLMSG */
1401
1402#ifndef HAVE_EXTERN_XDR_OPAQUE_AUTH
1403extern bool_t xdr_opaque_auth(XDR *xdrs, struct opaque_auth *auth);
1404#endif /* not HAVE_EXTERN_XDR_OPAQUE_AUTH */
1405
1406/****************************************************************************/
1407/*
1408 * amd-specific header files.
1409 */
1410#ifdef THIS_HEADER_FILE_IS_INCLUDED_ABOVE
1411# include <amu_nfs_prot.h>
1412#endif /* THIS_HEADER_FILE_IS_INCLUDED_ABOVE */
1413#include <am_utils.h>
1414#include <amq_defs.h>
1415#include <aux_conf.h>
1416/* compatibility with old amd, while autoconfiscating it */
1417#include <am_compat.h>
1418
1419
1420/****************************************************************************/
1421/*
1422 * External definitions that depend on other macros available (or not)
1423 * and those are probably declared in any of the above headers.
1424 */
1425
1426#ifndef HAVE_HASMNTOPT
1427extern char *hasmntopt(mntent_t *mnt, char *opt);
1428#endif /* not HAVE_HASMNTOPT */
1429
1430/*
1431 * include definitions of all possible xdr functions that are otherwise
1432 * not defined elsewhere.
1433 */
1434#include <am_xdr_func.h>
1435
1436#endif /* not _AM_DEFS_H */
1437