1 dnl Process this file with autoconf to produce a configure script.
3 AC_CONFIG_HEADER(config.h)
5 dnl Checks for programs.
13 *linux*) AC_DEFINE(LINUX);;
14 *solaris*) AC_DEFINE(SUNOS5);;
15 *sunos*) AC_DEFINE(SUNOS4);;
16 *irix*) AC_DEFINE(IRIX);;
17 *aix*) AC_DEFINE(AIX);;
18 *hpux*) AC_DEFINE(HPUX);;
19 *qnx*) AC_DEFINE(QNX);;
20 *osf1*) AC_DEFINE(OSF1);;
21 *sco*) AC_DEFINE(SCO);;
22 *next2*) AC_DEFINE(NEXT2);;
30 AC_CHECK_HEADERS(sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h)
31 AC_CHECK_HEADERS(unistd.h utime.h grp.h sys/id.h limits.h net/if.h)
32 AC_CHECK_HEADERS(compat.h sys/param.h ctype.h sys/wait.h sys/ioctl.h)
33 AC_CHECK_HEADERS(sys/filio.h string.h stdlib.h sys/socket.h sys/mode.h)
34 AC_CHECK_HEADERS(sys/mount.h sys/vfs.h sys/fs/s5param.h sys/filsys.h termios.h)
35 AC_CHECK_HEADERS(sys/statfs.h sys/dustat.h sys/statvfs.h stdarg.h sys/sockio.h)
36 AC_CHECK_HEADERS(shadow.h netinet/tcp.h sys/security.h security/pam_appl.h)
40 AC_CHECK_SIZEOF(short)
54 AC_CHECK_TYPE(ino_t,unsigned)
56 echo $ac_n "checking for errno in errno.h... $ac_c"
57 AC_TRY_COMPILE([#include <errno.h>],[int i = errno],
58 echo yes; AC_DEFINE(HAVE_ERRNO_DECL),
63 ###############################################
64 # test for where we get crypt() from
65 if test "$ac_cv_lib_crypt_crypt" = "yes"; then
66 AC_CHECK_LIB(crypt, crypt)
69 if test "$ac_cv_lib_crypt_crypt" = "no" ||
70 test "$ac_cv_lib_crypt_crypt" = ""; then
72 AC_CHECK_FUNC(crypt, AC_DEFINE(HAVE_CRYPT),
75 *) AC_CHECK_LIB(crypt, crypt) ;;
77 if test "$ac_cv_lib_crypt_crypt" = "yes"; then
84 ###############################################
85 # test for where we get pam_authenticate() from
86 # might need libdl for this to work
87 if test "$ac_cv_header_security_pam_appl_h" = "yes"; then
90 if test "$ac_cv_lib_pam_pam_authenticate" = "yes"; then
91 AC_CHECK_LIB(pam, pam_authenticate)
92 AC_DEFINE(HAVE_PAM_AUTHENTICATE)
94 if test "$ac_cv_lib_pam_pam_authenticate" = "no" ||
95 test "$ac_cv_lib_pam_pam_authenticate" = ""; then
96 # look for pam_authenticate
97 AC_CHECK_FUNC(pam_authenticate, AC_DEFINE(HAVE_PAM_AUTHENTICATE),
100 *) AC_CHECK_LIB(pam, pam_authenticate) ;;
102 if test "$ac_cv_lib_pam_pam_authenticate" = "yes"; then
103 ac_cv_func_pam_authenticate=yes
104 AC_DEFINE(HAVE_PAM_AUTHENTICATE)
109 AC_CHECK_FUNCS(waitpid getcwd strdup strerror chown chmod chroot)
110 AC_CHECK_FUNCS(fstat strchr utime utimes getrlimit fsync execl)
111 AC_CHECK_FUNCS(memmove vsnprintf setsid glob strpbrk pipe crypt16 getauthuid)
112 AC_CHECK_FUNCS(strftime sigprocmask sigblock sigaction innetgr)
113 AC_CHECK_FUNCS(initgroups select rdchk getgrnam pathconf putprpwnam)
114 AC_CHECK_FUNCS(setresuid setuidx setgroups mktime rename ftruncate)
115 AC_CHECK_FUNCS(set_auth_parameters atexit grantpt getspnam dup2)
116 AC_CHECK_FUNCS(bigcrypt getprpwnam setluid yp_get_default_domain)
118 echo $ac_n "checking for long long ... $ac_c"
119 AC_TRY_RUN([#include <stdio.h>
120 main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
121 echo yes;AC_DEFINE(HAVE_LONGLONG),
124 echo $ac_n "checking for off64_t ... $ac_c"
125 AC_TRY_RUN([#include <stdio.h>
126 #include <sys/stat.h>
127 main() { struct stat64 st; off64_t s; if (sizeof(off_t) == sizeof(off64_t)) exit(1); exit((lstat64("/dev/null", &st)==0)?0:1); }],
128 echo yes;AC_DEFINE(HAVE_OFF64_T),
131 echo $ac_n "checking for union semun ... $ac_c"
133 #include <sys/types.h>
136 main() { union semun ss; exit(0); }],
137 echo yes;AC_DEFINE(HAVE_UNION_SEMUN),
140 echo $ac_n "checking for unsigned char ... $ac_c"
141 AC_TRY_RUN([#include <stdio.h>
142 main() { char c; c=250; exit((c > 0)?0:1); }],
143 echo yes;AC_DEFINE(HAVE_UNSIGNED_CHAR),
146 echo $ac_n "checking for sin_len in sock ... $ac_c"
147 AC_TRY_COMPILE([#include <sys/types.h>
148 #include <sys/socket.h>
149 #include <netinet/in.h>],
150 [struct sockaddr_in sock; sock.sin_len = sizeof(sock);],
151 echo yes;AC_DEFINE(HAVE_SOCK_SIN_LEN),
154 echo $ac_n "checking for __FILE__ macro ... $ac_c"
155 AC_TRY_COMPILE([#include <stdio.h>], [printf("%s\n", __FILE__);],
156 echo yes;AC_DEFINE(HAVE_FILE_MACRO),
159 echo $ac_n "checking for __FUNCTION__ macro ... $ac_c"
160 AC_TRY_COMPILE([#include <stdio.h>], [printf("%s\n", __FUNCTION__);],
161 echo yes;AC_DEFINE(HAVE_FUNCTION_MACRO),
164 echo $ac_n "checking if gettimeofday takes tz argument ... $ac_c"
166 #include <sys/time.h>
168 main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
169 echo yes;AC_DEFINE(HAVE_GETTIMEOFDAY_TZ),
173 echo $ac_n "checking for broken readdir ... $ac_c"
174 AC_TRY_RUN([#include <sys/types.h>
176 main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
177 if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
178 di->d_name[0] == 0) exit(0); exit(1);} ],
179 echo yes - you are using the broken /usr/ucb/cc;AC_DEFINE(HAVE_BROKEN_READDIR),
182 echo $ac_n "checking for utimbuf ... $ac_c"
183 AC_TRY_COMPILE([#include <sys/types.h>
185 [struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));],
186 echo yes;AC_DEFINE(HAVE_UTIMBUF),
189 echo $ac_n "checking for ftruncate extend ... $ac_c"
190 AC_TRY_RUN([#include "tests/ftruncate.c"],
191 echo yes;AC_DEFINE(HAVE_FTRUNCATE_EXTEND),
194 # The following test taken from the cvs sources
195 # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
196 # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
197 # libsocket.so which has a bad implementation of gethostbyname (it
198 # only looks in /etc/hosts), so we only look for -lsocket if we need
200 AC_CHECK_FUNC(connect, :,
203 *) AC_CHECK_LIB(nsl_s, printf) ;;
207 *) AC_CHECK_LIB(nsl, printf) ;;
211 *) AC_CHECK_LIB(socket, connect) ;;
215 *) AC_CHECK_LIB(inet, connect) ;;
217 dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
219 if test "$ac_cv_lib_socket_connect" = "yes" ||
220 test "$ac_cv_lib_inet_connect" = "yes"; then
221 ac_cv_func_connect=yes
222 AC_DEFINE(HAVE_CONNECT)
225 echo $ac_n "checking for broken getgroups ... $ac_c"
226 AC_TRY_RUN([#include "tests/getgroups.c"],
227 echo yes;AC_DEFINE(HAVE_BROKEN_GETGROUPS),
231 echo $ac_n "checking for broken inet_ntoa ... $ac_c"
234 #include <sys/types.h>
235 #include <netinet/in.h>
236 #include <arpa/inet.h>
237 main() { struct in_addr ip; ip.s_addr = 0x12345678;
238 if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
239 strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); }
241 echo yes;AC_DEFINE(REPLACE_INET_NTOA),
244 echo $ac_n "checking for root ... $ac_c"
245 AC_TRY_RUN([main() { exit(getuid() != 0); }],
246 echo yes;AC_DEFINE(HAVE_ROOT),
247 echo WARNING: running as non-root will disable some tests;)
250 echo $ac_n "checking for netmask ifconf ... $ac_c"
252 #define HAVE_NETMASK_IFCONF 1
254 #include "netmask.c"],
255 echo yes;netmask=yes;AC_DEFINE(HAVE_NETMASK_IFCONF),
258 if test $netmask = no; then
259 echo $ac_n "checking for netmask ifreq ... $ac_c"
261 #define HAVE_NETMASK_IFREQ 1
263 #include "netmask.c"],
264 echo yes;netmask=yes;AC_DEFINE(HAVE_NETMASK_IFREQ),
268 if test $netmask = no; then
269 echo $ac_n "checking for netmask AIX ... $ac_c"
271 #define HAVE_NETMASK_AIX 1
273 #include "netmask.c"],
274 echo yes;netmask=yes;AC_DEFINE(HAVE_NETMASK_AIX),
278 echo $ac_n "checking for trapdoor seteuid ... $ac_c"
279 AC_TRY_RUN([#include "tests/trapdoor.c"],
281 echo yes;AC_DEFINE(HAVE_TRAPDOOR_UID))
283 echo $ac_n "checking for shared mmap ... $ac_c"
284 AC_TRY_RUN([#include "tests/shared_mmap.c"],
285 echo yes;AC_DEFINE(HAVE_SHARED_MMAP),
288 echo $ac_n "checking for fcntl locking ... $ac_c"
289 AC_TRY_RUN([#include "tests/fcntl_lock.c"],
290 echo yes;AC_DEFINE(HAVE_FCNTL_LOCK),
293 echo $ac_n "checking for sysv ipc ... $ac_c"
294 AC_TRY_RUN([#include "tests/sysv_ipc.c"],
295 echo yes;AC_DEFINE(HAVE_SYSV_IPC),
298 #################################################
299 # check for the AFS filesystem
300 AC_MSG_CHECKING(whether to use AFS)
302 [ --with-afs Include AFS support
303 --without-afs Don't include AFS support (default)],
317 #################################################
318 # check for the DFS auth system
319 AC_MSG_CHECKING(whether to use DFS auth)
321 [ --with-dfs Include DFS support
322 --without-dfs Don't include DFS support (default)],
335 #################################################
336 # check for automount support
337 AC_MSG_CHECKING(whether to use AUTOMOUNT)
338 AC_ARG_WITH(automount,
339 [ --with-automount Include AUTOMOUNT support
340 --without-automount Don't include AUTOMOUNT support (default)],
344 AC_DEFINE(WITH_AUTOMOUNT)
353 #################################################
354 # check for a LDAP password database
355 AC_MSG_CHECKING(whether to use LDAP password database)
357 [ --with-ldap Include LDAP support
358 --without-ldap Don't include LDAP support (default)],
371 #################################################
372 # check for a NISPLUS password database
373 AC_MSG_CHECKING(whether to use NISPLUS password database)
375 [ --with-nisplus Include NISPLUS password database support
376 --without-nisplus Don't include NISPLUS password database support (default)],
380 AC_DEFINE(WITH_NISPLUS)
389 #################################################
390 # check for the secure socket layer
391 AC_MSG_CHECKING(whether to use SSL)
393 [ --with-ssl Include SSL support
394 --without-ssl Don't include SSL support (default)],
407 #################################################
408 # check for experimental mmap support
409 AC_MSG_CHECKING(whether to use MMAP)
411 [ --with-mmap Include experimental MMAP support
412 --without-mmap Don't include MMAP support (default)],
425 #################################################
426 # check for syslog logging
427 AC_MSG_CHECKING(whether to use syslog logging)
429 [ --with-syslog Include experimental SYSLOG support
430 --without-syslog Don't include SYSLOG support (default)],
434 AC_DEFINE(WITH_SYSLOG)
444 #################################################
445 # these tests are taken from the GNU fileutils package
446 AC_CHECKING(how to get filesystem space usage)
449 # Perform only the link test since it seems there are no variants of the
450 # statvfs function. This check is more than just AC_CHECK_FUNCS(statvfs)
451 # because that got a false positive on SCO OSR5. Adding the declaration
452 # of a `struct statvfs' causes this test to fail (as it should) on such
453 # systems. That system is reported to work fine with STAT_STATFS4 which
454 # is what it gets when this test fails.
455 if test $space = no; then
457 AC_CACHE_CHECK([statvfs function (SVR4)], fu_cv_sys_stat_statvfs,
458 [AC_TRY_LINK([#include <sys/types.h>
459 #include <sys/statvfs.h>],
460 [struct statvfs fsd; statvfs (0, &fsd);],
461 fu_cv_sys_stat_statvfs=yes,
462 fu_cv_sys_stat_statvfs=no)])
463 if test $fu_cv_sys_stat_statvfs = yes; then
465 AC_DEFINE(STAT_STATVFS)
469 if test $space = no; then
470 # DEC Alpha running OSF/1
471 AC_MSG_CHECKING([for 3-argument statfs function (DEC OSF/1)])
472 AC_CACHE_VAL(fu_cv_sys_stat_statfs3_osf1,
474 #include <sys/param.h>
475 #include <sys/types.h>
476 #include <sys/mount.h>
481 exit (statfs (".", &fsd, sizeof (struct statfs)));
483 fu_cv_sys_stat_statfs3_osf1=yes,
484 fu_cv_sys_stat_statfs3_osf1=no,
485 fu_cv_sys_stat_statfs3_osf1=no)])
486 AC_MSG_RESULT($fu_cv_sys_stat_statfs3_osf1)
487 if test $fu_cv_sys_stat_statfs3_osf1 = yes; then
489 AC_DEFINE(STAT_STATFS3_OSF1)
493 if test $space = no; then
495 AC_MSG_CHECKING([for two-argument statfs with statfs.bsize dnl
496 member (AIX, 4.3BSD)])
497 AC_CACHE_VAL(fu_cv_sys_stat_statfs2_bsize,
499 #ifdef HAVE_SYS_PARAM_H
500 #include <sys/param.h>
502 #ifdef HAVE_SYS_MOUNT_H
503 #include <sys/mount.h>
505 #ifdef HAVE_SYS_VFS_H
512 exit (statfs (".", &fsd));
514 fu_cv_sys_stat_statfs2_bsize=yes,
515 fu_cv_sys_stat_statfs2_bsize=no,
516 fu_cv_sys_stat_statfs2_bsize=no)])
517 AC_MSG_RESULT($fu_cv_sys_stat_statfs2_bsize)
518 if test $fu_cv_sys_stat_statfs2_bsize = yes; then
520 AC_DEFINE(STAT_STATFS2_BSIZE)
524 if test $space = no; then
526 AC_MSG_CHECKING([for four-argument statfs (AIX-3.2.5, SVR3)])
527 AC_CACHE_VAL(fu_cv_sys_stat_statfs4,
528 [AC_TRY_RUN([#include <sys/types.h>
529 #include <sys/statfs.h>
533 exit (statfs (".", &fsd, sizeof fsd, 0));
535 fu_cv_sys_stat_statfs4=yes,
536 fu_cv_sys_stat_statfs4=no,
537 fu_cv_sys_stat_statfs4=no)])
538 AC_MSG_RESULT($fu_cv_sys_stat_statfs4)
539 if test $fu_cv_sys_stat_statfs4 = yes; then
541 AC_DEFINE(STAT_STATFS4)
545 if test $space = no; then
547 AC_MSG_CHECKING([for two-argument statfs with statfs.fsize dnl
548 member (4.4BSD and NetBSD)])
549 AC_CACHE_VAL(fu_cv_sys_stat_statfs2_fsize,
550 [AC_TRY_RUN([#include <sys/types.h>
551 #ifdef HAVE_SYS_PARAM_H
552 #include <sys/param.h>
554 #ifdef HAVE_SYS_MOUNT_H
555 #include <sys/mount.h>
561 exit (statfs (".", &fsd));
563 fu_cv_sys_stat_statfs2_fsize=yes,
564 fu_cv_sys_stat_statfs2_fsize=no,
565 fu_cv_sys_stat_statfs2_fsize=no)])
566 AC_MSG_RESULT($fu_cv_sys_stat_statfs2_fsize)
567 if test $fu_cv_sys_stat_statfs2_fsize = yes; then
569 AC_DEFINE(STAT_STATFS2_FSIZE)
573 if test $space = no; then
575 AC_MSG_CHECKING([for two-argument statfs with struct fs_data (Ultrix)])
576 AC_CACHE_VAL(fu_cv_sys_stat_fs_data,
577 [AC_TRY_RUN([#include <sys/types.h>
578 #ifdef HAVE_SYS_PARAM_H
579 #include <sys/param.h>
581 #ifdef HAVE_SYS_MOUNT_H
582 #include <sys/mount.h>
584 #ifdef HAVE_SYS_FS_TYPES_H
585 #include <sys/fs_types.h>
590 /* Ultrix's statfs returns 1 for success,
591 0 for not mounted, -1 for failure. */
592 exit (statfs (".", &fsd) != 1);
594 fu_cv_sys_stat_fs_data=yes,
595 fu_cv_sys_stat_fs_data=no,
596 fu_cv_sys_stat_fs_data=no)])
597 AC_MSG_RESULT($fu_cv_sys_stat_fs_data)
598 if test $fu_cv_sys_stat_fs_data = yes; then
600 AC_DEFINE(STAT_STATFS2_FS_DATA)
605 AC_OUTPUT(Makefile tests/dummy client/dummy lib/dummy lib/rpc/dummy
606 lib/rpc/client/dummy lib/rpc/include/dummy lib/rpc/parse/dummy
607 lib/rpc/server/dummy lib/smb/dummy ubiqx/dummy web/dummy)