]> arthur.barton.de Git - netatalk.git/blob - configure.in
bugfix: don't invalidate dir if it's ROOT_PARENT.
[netatalk.git] / configure.in
1 dnl $Id: configure.in,v 1.168.2.1 2002-10-18 03:39:40 jmarcus Exp $
2 dnl configure.in for netatalk
3
4 AC_INIT(bin/adv1tov2/adv1tov2.c)
5
6 NETATALK_VERSION=`cat $srcdir/VERSION`
7 AC_SUBST(NETATALK_VERSION)
8
9 AC_CANONICAL_SYSTEM
10 AM_INIT_AUTOMAKE(netatalk, ${NETATALK_VERSION})
11 AM_CONFIG_HEADER(config.h)
12
13 dnl Checks for programs.
14 AC_PROG_AWK
15 AC_PROG_CC
16 AC_PROG_INSTALL
17 AC_PROG_LN_S
18 AC_PROG_MAKE_SET
19 AC_LIBTOOL_DLOPEN
20 AM_PROG_LIBTOOL
21 AC_PROG_PERL
22 AC_PROG_GREP
23 AC_PROG_PS
24
25 dnl *********************************************************************
26 dnl FIXME! FIXME! These should be selectable properly, and should produce
27 dnl the proper flags and defines...
28 dnl *********************************************************************
29
30 dnl Checks for libraries.
31 dnl Replace `main' with a function in -labs:
32 AC_CHECK_LIB(abs, main)
33 dnl Replace `main' with a function in -laudit:
34 AC_CHECK_LIB(audit, main)
35 dnl Replace `main' with a function in -lauth:
36 AC_CHECK_LIB(auth, main)
37 dnl Replace `main' with a function in -lcmd:
38 AC_CHECK_LIB(cmd, main)
39 dnl Replace `main' with a function in -lcrypt:
40 AC_CHECK_LIB(crypt, main)
41 dnl Replace `main' with a function in -ld:
42 AC_CHECK_LIB(d, main)
43 dnl Replace `main' with a function in -ldl:
44 AC_CHECK_LIB(dl, main)
45 dnl Replace `main' with a function in -lkauth:
46 AC_CHECK_LIB(kauth, main)
47 dnl Replace `main' with a function in -lkrb:
48 AC_CHECK_LIB(krb, main)
49 dnl Replace `main' with a function in -llwp:
50 AC_CHECK_LIB(lwp, main)
51 dnl Replace `main' with a function in -ln:
52 AC_CHECK_LIB(n, main)
53 dnl Replace `main' with a function in -lnsl:
54 AC_CHECK_LIB(nsl, main)
55 dnl Replace `main' with a function in -lprot:
56 AC_CHECK_LIB(prot, main)
57 dnl Replace `main' with a function in -lrx:
58 AC_CHECK_LIB(rx, main)
59 dnl Replace `main' with a function in -lrxkad:
60 AC_CHECK_LIB(rxkad, main)
61 dnl Replace `main' with a function in -lsocket:
62 AC_CHECK_LIB(socket, main)
63 dnl Replace `main' with a function in -lsys:
64 AC_CHECK_LIB(sys, main)
65 dnl Replace `main' with a function in -lubik:
66 AC_CHECK_LIB(ubik, main)
67
68 #
69 # Check presence of some functions
70 #
71 # Check for XPG4 access() function
72 # Be sure to test before adding AFS libs in LIBS path as AFS lib
73 # has such a function that works only on AFS filesystems.
74 AC_CHECK_FUNCS(access)
75
76 dnl Checks for header files.
77 AC_HEADER_DIRENT
78 AC_HEADER_STDC
79 AC_HEADER_SYS_WAIT
80 AC_CHECK_HEADERS(fcntl.h limits.h stdint.h strings.h sys/fcntl.h sys/file.h sys/ioctl.h sys/time.h sys/mnttab.h sys/statvfs.h sys/stat.h sys/vfs.h mntent.h syslog.h unistd.h termios.h sys/termios.h netdb.h sgtty.h ufs/quota.h mount.h sys/mount.h statfs.h sys/types.h dlfcn.h errno.h sys/errno.h)
81 AC_CHECK_HEADER(sys/cdefs.h,,
82         AC_MSG_RESULT([enabling generic cdefs.h from tree])
83         CFLAGS="-I\$(top_srcdir)/sys/generic $CFLAGS"
84 )
85
86 dnl Checks for typedefs, structures, and compiler characteristics.
87 AC_C_CONST
88 AC_TYPE_UID_T
89 AC_C_INLINE
90 AC_TYPE_MODE_T
91 AC_TYPE_OFF_T
92 AC_TYPE_PID_T
93 AC_TYPE_SIZE_T
94 AC_STRUCT_ST_RDEV
95 AC_HEADER_TIME
96 AC_STRUCT_TM
97
98 dnl Checks for library functions.
99 AC_TYPE_GETGROUPS
100 AC_PROG_GCC_TRADITIONAL
101 AC_FUNC_MEMCMP
102 AC_HEADER_MAJOR
103 AC_FUNC_MMAP
104 AC_TYPE_SIGNAL
105 AC_FUNC_UTIME_NULL
106 AC_FUNC_WAIT3
107 AC_CHECK_FUNCS(flock getcwd gethostname gettimeofday getusershell mkdir rmdir select socket strdup strstr strtoul setpgrp strchr memcpy)
108 AC_FUNC_SETPGRP
109
110 dnl Checks for (v)snprintf
111 NETATALK_SNPRINTF_CHECK
112
113 dnl --------------------------------------------------------------------------
114 dnl specific configuration comes in here:
115 dnl --------------------------------------------------------------------------
116
117 AC_DEFINE(ADMIN_GRP, 1)
118
119 AC_ARG_WITH(admin-group,
120         [  --disable-admin-group   disable admin group],
121         if test "$enableval" = "no"; then
122                 AC_DEFINE(ADMIN_GRP, 0)
123                 AC_MSG_RESULT([disabling administrative group support])
124         fi
125 )
126
127 NETATALK_AFS_CHECK
128
129 NETATALK_CONFIG_DIRS
130
131 AC_ARG_WITH(logfile,
132         [  --with-logfile=PATH     path for file used by logger [/var/log/netatalk.log]
133                           use --without-logfile to disable logger],
134         if test "$withval" = "no"; then
135                 AC_DEFINE(DISABLE_LOGGER, 1)
136                 AC_MSG_RESULT([logger disabled])
137         elif test "$withval" != "yes"; then
138                 AC_DEFINE_UNQUOTED(LOGFILEPATH, "$withval")
139                 AC_MSG_RESULT([logfile set to $withval])
140         else
141                 AC_DEFINE_UNQUOTED(LOGFILEPATH, "/var/log/netatalk.log")
142                 AC_MSG_RESULT([logfile set to default]) 
143         fi,
144                 AC_DEFINE_UNQUOTED(LOGFILEPATH, "/var/log/netatalk.log")
145                 AC_MSG_RESULT([logfile set to default])
146 )
147
148 AC_ARG_WITH(cracklib,
149         [  --with-cracklib=DICT    enable/set location of cracklib dictionary],
150         if test "x$withval" != "xno" ; then
151                 cracklib="$withval"
152                 AC_CHECK_LIB(crack, main,
153                         AC_DEFINE(USE_CRACKLIB) 
154                         LIBS="$LIBS -lcrack"
155                         AC_MSG_RESULT([enabling cracklib support])
156                         if test "$cracklib" = "yes"; then
157                                 cracklib="/usr/lib/cracklib_dict"
158                         fi
159                         AC_DEFINE_UNQUOTED(_PATH_CRACKLIB, "$cracklib",
160                                 [path to cracklib dictionary])
161                         AC_MSG_RESULT([setting cracklib dictionary to $cracklib]),
162                         AC_MSG_ERROR([cracklib not found!])
163                 )
164         fi
165 )
166
167 AC_ARG_ENABLE(ddp,
168         [  --disable-ddp           disable DDP],
169         if test "$enableval" = "no"; then 
170                 AC_DEFINE(NO_DDP, 1)
171                 AC_MSG_RESULT([disabling DDP])
172         fi
173 )
174
175 AC_ARG_ENABLE(debug,
176         [  --enable-debug          enable debug code],
177         if test "$enableval" != "no"; then
178                 if test "$enableval" = "yes"; then
179                         AC_DEFINE(DEBUG, 1)
180                 else
181                         AC_DEFINE_UNQUOTED(DEBUG, $enableval)
182                 fi 
183                 AC_MSG_RESULT([enabling debugging code])
184         fi
185 )
186
187
188 dnl ----------- A NOTE ABOUT DROPKLUDGE
189 dnl The trouble with this fix is that if you know what the file is called, it
190 dnl can be read from the Unix side.  That's okay for most academic institutions
191 dnl since the students don't have telnet access to the Mac servers.  There is
192 dnl currently no one working on further development/fixes of DROPKLUDGE.
193 dnl -----------
194
195 AC_ARG_ENABLE(dropkludge,
196         [  --enable-dropkludge     enable the experimental dropbox fix (INSECURE!) ],
197         if test "$enableval" = "yes"; then 
198                 AC_DEFINE(DROPKLUDGE, 1)
199                 AC_MSG_RESULT([enabling experimental dropbox support])
200         fi
201 )
202
203 AC_ARG_ENABLE(force-uidgid,
204         [  --enable-force-uidgid   allow forcing of uid/gid per volume (BROKEN) ],
205         if test "$enableval" = "yes"; then
206                 AC_DEFINE(FORCE_UIDGID, 1)
207                 AC_MSG_RESULT([enabling forcing of uid/gid per volume])
208         fi
209 )
210
211 dnl Don't use DB3 unless it's needed
212 db3_required=no
213
214 dnl Determine DID scheme
215 AC_MSG_CHECKING([for DID scheme to use])
216 AC_ARG_WITH(did,
217         [  --with-did=SCHEME       set DID scheme (cnid,last)],
218         [ did_scheme="$withval" ],
219         [ did_scheme="cnid" ]
220 )
221
222 if test "x$did_scheme" = "xlast"; then
223         AC_DEFINE(USE_LASTDID, 1)
224         AC_MSG_RESULT([last])
225 elif test "x$did_scheme" = "xcnid"; then
226         db3_required="yes"
227         AC_DEFINE(CNID_DB, 1)
228         AC_MSG_RESULT([enabling build with CNID DB support])
229 else
230         AC_MSG_ERROR([unknown DID scheme])
231 fi
232 AM_CONDITIONAL(COMPILE_CNID, test "x$did_scheme" = "xcnid")
233
234 dnl Determine whether or not to use filename mangling
235 AC_MSG_CHECKING([whether or not to use filename mangling])
236 AC_ARG_WITH(mangling,
237         [  --with-mangling         enable filename mangling],
238         if test "$withval" = "yes"; then
239             if test "x$did_scheme" != "xcnid"; then
240                 AC_MSG_ERROR([DID scheme must be CNID to use filename mangling])
241             else
242                 AC_DEFINE(FILE_MANGLING, 1)
243                 AC_MSG_RESULT([yes])
244             fi
245         else
246             AC_MSG_RESULT([no])
247         fi
248         , AC_MSG_RESULT([no])
249 )
250
251 if test "$did_scheme" = "cnid"; then
252     USE_CDB="yes"
253 else
254     USE_CDB="no"
255 fi
256
257 dnl Determine whether or not to use CDB or transactional DB store
258 AC_MSG_CHECKING([whether or not to use CNID with Concurrent Data Store])
259 AC_ARG_WITH(cdb,
260         [ --with-cdb            enable CNID with Concurrent Data Store],
261         if test "$withval" = "no"; then
262             if test "x$did_scheme" != "xcnid"; then
263                 USE_CDB="no"
264                 AC_MSG_ERROR([DID scheme must be CNID to use CDB])
265             else
266                 USE_CDB="no"
267                 AC_MSG_RESULT([no])
268             fi
269         else
270                 USE_CDB="yes"
271                 AC_MSG_RESULT([yes])
272         fi
273         , AC_MSG_RESULT([yes])
274 )
275
276 if test "$USE_CDB" = "yes"; then
277     AC_DEFINE(CNID_DB_CDB, 1)
278 fi
279
280 dnl Check for Berkeley DB3 library
281 if test "x$db3_required" = "xyes"; then
282         AC_PATH_DB3(, [AC_MSG_ERROR([Berkeley DB3 library not found!])])
283 fi
284
285 dnl Check for quota support
286 AC_CHECK_QUOTA
287
288 dnl Check for optional server location protocol support (used by MacOS X)
289 NETATALK_SRVLOC
290
291 dnl Check for PAM libs
292 AC_PATH_PAM([
293         PAPD_LIBS="$PAPD_LIBS $PAM_LIBS"
294         AFPD_LIBS="$AFPD_LIBS $PAM_LIBS"
295         use_pam_so=yes
296         compile_pam=yes
297         AC_DEFINE(USE_PAM)
298 ])
299
300 AC_MSG_CHECKING([whether shadow support should be enabled])
301 AC_ARG_WITH(shadow,
302         [  --with-shadow           enable shadow password support],
303         [shadowpw="$withval"],
304         [shadowpw=no]
305 )
306 if test "x$shadowpw" = "xyes"; then
307         AC_DEFINE(SHADOWPW)
308 fi
309 AC_MSG_RESULT([$shadowpw])
310
311 AC_ARG_ENABLE(shell-check,
312         [  --disable-shell-check   disable checking for a valid shell],
313         if test "$enableval" = "no"; then 
314                 AC_DEFINE(DISABLE_SHELLCHECK, 1)
315                 AC_MSG_RESULT([disabling valid shell check])
316         fi
317 )
318
319 AC_MSG_CHECKING([whether flock locks should be enabled])
320 AC_ARG_WITH(flock-locks,
321         [  --with-flock-locks      enable flock locks support],
322         [flock_locks="$withval"],
323         [flock_locks="no"]
324 )
325 if test "x$flock_locks" = "xyes"; then
326         AC_DEFINE(USE_FLOCK_LOCKS)
327 fi
328 AC_MSG_RESULT([$flock_locks])
329
330 AC_ARG_WITH(tcp-wrappers,
331         [  --with-tcp-wrappers     enable TCP wrappers support],
332         AC_CHECK_LIB(wrap, tcpd_warn,
333                 AC_DEFINE(TCPWRAP)
334                 AFPD_LIBS="$AFPD_LIBS -lwrap"
335                 AC_MSG_RESULT([enabling TCP wrappers support])
336         )
337 )
338
339 AC_ARG_ENABLE(redhat,
340         [  --enable-redhat         use redhat-style sysv configuration ],
341         if test "$enableval" = "yes"; then
342                 sysv_style=redhat
343         fi
344         AC_MSG_RESULT([enabling redhat-style sysv support])
345 )
346
347 AC_ARG_ENABLE(suse,
348         [  --enable-suse           use suse-style sysv configuration ],
349         if test "$enableval" = "yes"; then
350                 sysv_style=suse
351         fi
352         AC_MSG_RESULT([enabling suse-style sysv support])
353 )
354
355 AC_ARG_ENABLE(cobalt,
356         [  --enable-cobalt         use cobalt-style sysv configuration ],
357         if test "$enableval" = "yes"; then
358                 sysv_style=cobalt
359         fi
360         AC_MSG_RESULT([enabling cobalt-style sysv support])
361 )
362
363 AC_ARG_ENABLE(netbsd,
364         [  --enable-netbsd         use NetBSD-style rc.d configuration ],
365         if test "x$enableval" = "xyes"; then
366                 sysv_style=netbsd
367         fi
368         AC_MSG_RESULT([enabling NetBSD-style rc.d support])
369 )
370
371 dnl ----- timelord compilation (disabled by default)
372 AC_MSG_CHECKING([whether timelord should be compiled])
373 compile_timelord=no
374 AC_ARG_ENABLE(timelord,
375         [  --enable-timelord       enable compilation of timelord server],
376         [compile_timelord="$enableval"],
377         [compile_timelord="no"]
378 )
379 AC_MSG_RESULT([$compile_timelord])
380
381 AC_ARG_WITH(uams-path,
382         [  --with-uams-path=PATH   path to UAMs [[PKGCONF/uams]]],
383         uams_path="$withval",
384         uams_path="${PKGCONFDIR}/uams"
385 )
386
387 AC_ARG_WITH(catsearch,
388         [  --with-catsearch     enable fpCatSearch functionality (experimental)],
389         if test "$withval" = "yes"; then
390             AC_DEFINE(WITH_CATSEARCH, 1)
391         fi
392 )
393
394 dnl --------------------------------------------------------------------------
395 dnl FHS stuff has to be done last because it overrides other defaults
396 dnl --------------------------------------------------------------------------
397
398 AC_ARG_ENABLE(fhs,
399         [  --enable-fhs            use Filesystem Hierarchy Standard (FHS) compatibility],
400         if test "$enableval" = "yes"; then
401                 uams_path="/usr/lib/netatalk"
402                 sysconfdir="/etc"
403                 PKGCONFDIR=${sysconfdir}/netatalk
404                 use_pam_so=yes
405                 mandir="/usr/share/man"
406                 AC_DEFINE(FHS_COMPATIBILITY)
407         fi
408         AC_MSG_RESULT([enabling Filesystem Hierarchy Standard (FHS) compatibility])
409 )
410
411 dnl --------------------------------------------------------------------------
412 dnl post-FHS substitutions, etc
413 dnl --------------------------------------------------------------------------
414
415 dnl ***** UAMS_PATH
416 AC_DEFINE_UNQUOTED(UAMS_PATH, "${uams_path}",
417         [path to UAMs [default=PKGCONF/uams]])
418 UAMS_PATH="${uams_path}"
419 AC_SUBST(UAMS_PATH)
420
421 dnl --------------------------------------------------------------------------
422 dnl drop in includes for top level directory structures here...
423 dnl --------------------------------------------------------------------------
424
425 dnl Note: $(top_srcdir)/include should be added before all other includes
426 dnl       so that includes from that directory a preferred to includes from
427 dnl       /usr/include or similar places.
428 LIBS="$LIBS -L\$(top_srcdir)/libatalk"
429 CFLAGS="-I\$(top_srcdir)/include $CFLAGS -I\$(top_srcdir)/sys"
430
431 dnl --------------------------------------------------------------------------
432 dnl specific configuration comes in here:
433 dnl --------------------------------------------------------------------------
434
435 dnl ac_cv_target_os is now host_os, ac_cv_target_cpu is now host_cpu
436
437 dnl --------------------- determine operating system from "target"
438 case "$host_os" in
439         *aix*)                          this_os=aix ;;
440         *freebsd*)                      this_os=freebsd ;;
441         *hpux11*)                       this_os=hpux11 ;;
442         *irix*)                         this_os=irix ;;
443         *linux*)                        this_os=linux ;;
444         *osx*)                          this_os=macosx ;;
445         *darwin*)                       this_os=macosx ;;
446         *netbsd*)                       this_os=netbsd ;;
447         *openbsd*)                      this_os=openbsd ;;
448         *osf*)                          this_os=tru64 ;;
449         *solaris*)                      this_os=solaris ;;
450 esac
451
452 case "$host_cpu" in
453         i386|i486|i586|i686|k7)         this_cpu=x86 ;;
454         alpha)                                          this_cpu=alpha ;;
455         mips)                                           this_cpu=mips ;;
456         powerpc|ppc)                            this_cpu=ppc ;;
457 esac
458
459 dnl --------------------- operating system specific flags (port from sys/*)
460
461 dnl ----- AIX specific -----
462 if test x"$this_os" = "xaix"; then
463         AC_MSG_RESULT([ * AIX specific configuration])
464         AC_DEFINE(NO_STRUCT_TM_GMTOFF)
465
466         dnl This is probably a lie; AIX 4.3 supports a 64-bit long
467         dnl compilation environment.  It's enough to get things defined
468         dnl right in endian.h provided that long long is supported, though.
469         AC_DEFINE(HAVE_32BIT_LONGS)
470 fi
471
472 dnl ----- FreeBSD specific -----
473 if test x"$this_os" = "xfreebsd"; then 
474         AC_MSG_RESULT([ * FreeBSD specific configuration])
475         AC_DEFINE(BSD4_4)
476         AC_DEFINE(SENDFILE_FLAVOR_BSD)
477
478         AC_DEFINE(NO_CRYPT_H, 1)
479 fi
480
481 dnl ----- HP-UX 11 specific -----
482 if test x"$this_os" = "xhpux11"; then
483         AC_MSG_RESULT([ * HP-UX 11 specific configuration])
484
485         AC_DEFINE(_ISOC9X_SOURCE)
486         AC_DEFINE(NO_STRUCT_TM_GMTOFF)
487 fi
488
489 dnl ----- IRIX specific -----
490 if test x"$this_os" = "xirix"; then
491         AC_MSG_RESULT([ * IRIX specific configuration])
492
493         AC_DEFINE(NO_STRUCT_TM_GMTOFF)
494 fi
495
496 dnl ----- Linux specific -----
497 if test x"$this_os" = "xlinux"; then 
498         AC_MSG_RESULT([ * Linux specific configuration])
499
500         dnl ----- check if we need the quotactl wrapper
501         AC_CHECK_HEADERS(sys/quota.h linux/quota.h)
502         AC_CHECK_FUNC(quotactl,,
503                 AC_DEFINE(NEED_QUOTACTL_WRAPPER)
504                 AC_MSG_RESULT([enabling quotactl wrapper])
505         )
506
507         dnl ----- as far as I can tell, dbtob always does the wrong thing
508         dnl ----- on every single version of linux I've ever played with.
509         dnl ----- see etc/afpd/quota.c
510         AC_DEFINE(HAVE_BROKEN_DBTOB)
511
512         dnl --- added by Yoshinobu Ishizaki (2001.03.13) ---
513         dnl ----- check if version is newer than 2.2.x
514         changequote(<<,>>)
515         majorvers="`uname -r | sed 's/\([0-9]\)..*/\1/'`"
516         minorvers="`uname -r | sed 's/[0-9]\.\([0-9]\)\..*/\1/'`"
517         if [ $majorvers -ge 2 ]; then
518                 if [ $minorvers -ge 2 ]; then
519                         changequote([,])
520                         AC_MSG_RESULT([ * found Linux 2.2.x or higher])
521                         AC_DEFINE(SENDFILE_FLAVOR_LINUX)
522                 else
523                         AC_MSG_RESULT([ * found Linux 2.0.x ]) 
524                 fi
525         fi
526
527         dnl ----- Linux/alpha specific -----
528         if test x"$this_cpu" = "xalpha"; then 
529                 AC_MSG_RESULT([enabling gcc memcpy bug workaround])
530                 AC_DEFINE(HAVE_GCC_MEMCPY_BUG)
531         fi
532         need_dash_r=no
533 fi
534
535 dnl ----- Mac OSX specific -----
536 if test x"$this_os" = "xmacosx"; then 
537         AC_MSG_RESULT([ * Mac OSX specific configuration])
538         AC_DEFINE(BSD4_4)
539         AC_DEFINE(HAVE_BROKEN_CPP)
540         AC_DEFINE(HAVE_2ARG_DBTOB)
541         dnl AC_DEFINE(NO_DLFCN_H)
542         AC_DEFINE(MACOSX_SERVER)
543 fi
544
545 dnl ----- NetBSD specific -----
546 if test x"$this_os" = "xnetbsd"; then 
547         AC_MSG_RESULT([ * NetBSD specific configuration])
548         AC_DEFINE(BSD4_4)
549         if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
550                 # NetBSD ELF machines don't have to have DLSYM_PREPEND_UNDERSCORE.
551                 # If this test is true, it's not an ELF box.
552                 # This REALLY should be a configure test.
553                 AC_DEFINE(DLSYM_PREPEND_UNDERSCORE)
554         fi
555         CFLAGS="-I\$(top_srcdir)/sys/netbsd -I/usr/include/kerberosIV $CFLAGS"
556         need_dash_r=yes 
557
558         dnl ----- NetBSD does not have crypt.h, uses unistd.h -----
559         AC_DEFINE(UAM_DHX, 1)
560         AC_DEFINE(NO_CRYPT_H, 1)
561 fi
562
563 dnl ----- OpenBSD specific -----
564 if test x"$this_os" = "xopenbsd"; then 
565         AC_MSG_RESULT([ * OpenBSD specific configuration])
566         AC_DEFINE(BSD4_4)
567         AC_DEFINE(DLSYM_PREPEND_UNDERSCORE)
568
569         dnl ----- OpenBSD does not have crypt.h, uses unistd.h -----
570         AC_DEFINE(UAM_DHX, 1)
571         AC_DEFINE(NO_CRYPT_H, 1)
572 fi
573
574 dnl ----- Solaris specific -----
575 if test x"$this_os" = "xsolaris"; then 
576         AC_MSG_RESULT([ * Solaris specific configuration])
577         AC_DEFINE(__svr4__)
578         AC_DEFINE(_ISOC9X_SOURCE)
579         AC_DEFINE(NO_STRUCT_TM_GMTOFF)
580         AC_DEFINE(SOLARIS)
581         CFLAGS="-I\$(top_srcdir)/sys/generic $CFLAGS"
582         need_dash_r=yes
583
584         AC_MSG_RESULT([enabling Solaris kernel module build])
585         solaris_module=yes
586 fi
587
588 dnl ----- Tru64 specific -----
589 if test x"$this_os" = "xtru64"; then 
590         AC_MSG_RESULT([ * Tru64 specific configuration])
591         AC_DEFINE(NO_DDP)
592         AC_DEFINE(HAVE_64BIT_LONGS)
593         dnl AC_DEFINE(USE_MOUNT_H)
594         AC_DEFINE(USE_OLD_RQUOTA)
595         dnl AC_DEFINE(USE_UFS_QUOTA_H)
596         AC_DEFINE(TRU64)
597         AC_CHECK_LIB(security,set_auth_parameters)
598         CFLAGS="-I\$(top_srcdir)/sys/tru64 $CFLAGS"
599         need_dash_r=no
600         sysv_style=tru64
601 fi
602
603 dnl -- look for openssl
604 AC_PATH_SSL
605
606 dnl --------------------- check for building PGP UAM module
607
608 AC_ARG_ENABLE(pgp-uam,
609         [  --enable-pgp-uam        enable build of PGP UAM module],
610         if test "$enableval" = "yes"; then 
611                 if test "$compile_ssl" = "yes"; then 
612                         AC_DEFINE(UAM_PGP, 1)
613                         compile_pgp=yes
614                         AC_MSG_RESULT([enabling build with PGP UAM module])
615                 fi
616         fi
617 )
618
619 dnl --------------------- check for building Kerberos v4 UAM module
620
621 AC_ARG_ENABLE(krb4-uam,
622         [  --enable-krb4-uam       enable build of Kerberos v4 UAM module],
623         if test "$enableval" = "yes"; then
624                 AC_DEFINE(UAM_KRB4, 1)
625                 compile_kerberos=yes
626                 AC_MSG_RESULT([enabling build with Kerberos v4 UAM module])
627         fi
628 )
629 dnl --------------------- overwrite the config files . . . or not.
630
631 AC_MSG_CHECKING([whether configuration files should be overwritten])
632 AC_ARG_ENABLE(overwrite,
633         [  --enable-overwrite      overwrite configuration files during installation],
634         [OVERWRITE_CONFIG="${enable_overwrite}"],
635         [OVERWRITE_CONFIG="no"]
636 )
637 AC_MSG_RESULT([$OVERWRITE_CONFIG])
638
639 dnl --------------------- last minute substitutions
640
641 AC_SUBST(LIBS)
642 AC_SUBST(AFPD_LIBS)
643 AC_SUBST(PAPD_LIBS)
644 AC_SUBST(CFLAGS)
645 AC_SUBST(OVERWRITE_CONFIG)
646
647 AM_CONDITIONAL(SOLARIS_MODULE, test x$solaris_module = xyes)
648 AM_CONDITIONAL(COMPILE_TIMELORD, test x$compile_timelord = xyes)
649 AM_CONDITIONAL(USE_DHX, test x$compile_ssl = xyes)
650 AM_CONDITIONAL(USE_KERBEROS, test x$compile_kerberos = xyes)
651 AM_CONDITIONAL(USE_PAM_SO, test x$use_pam_so = xyes)
652 AM_CONDITIONAL(USE_PAM, test x$compile_pam = xyes)
653 AM_CONDITIONAL(BUILD_PAM, test x$compile_pam = xyes)
654 AM_CONDITIONAL(USE_PGP, test x$compile_pgp = xyes)
655 AM_CONDITIONAL(USE_COBALT, test x$sysv_style = xcobalt)
656 AM_CONDITIONAL(USE_NETBSD, test x$sysv_style = xnetbsd)
657 AM_CONDITIONAL(USE_REDHAT, test x$sysv_style = xredhat)
658 AM_CONDITIONAL(USE_SUSE, test x$sysv_style = xsuse)
659 AM_CONDITIONAL(USE_SHADOWPW, test x$shadowpw = xyes)
660 AM_CONDITIONAL(USE_TRU64, test x$sysv_style = xtru64)
661
662 dnl --------------------- generate files
663
664 AC_OUTPUT([Makefile
665         bin/Makefile
666         bin/adv1tov2/Makefile
667         bin/aecho/Makefile
668         bin/afile/Makefile
669         bin/afppasswd/Makefile
670         bin/cnid/Makefile
671         bin/cnid/cnid_maint
672         bin/getzones/Makefile
673         bin/megatron/Makefile
674         bin/nbp/Makefile
675         bin/pap/Makefile
676         bin/psorder/Makefile
677         config/Makefile
678         contrib/Makefile
679         contrib/macusers/Makefile
680         contrib/macusers/macusers
681         contrib/nu/Makefile
682         contrib/nu/nu
683         contrib/printing/Makefile
684         contrib/shell_utils/Makefile
685         contrib/shell_utils/afpd-mtab.pl
686         contrib/shell_utils/apple_cp
687         contrib/shell_utils/apple_mv
688         contrib/shell_utils/apple_rm
689         contrib/shell_utils/cleanappledouble.pl
690         contrib/shell_utils/netatalkshorternamelinks.pl
691         contrib/timelord/Makefile
692         distrib/Makefile
693         distrib/config/Makefile
694         distrib/config/netatalk-config
695         distrib/initscripts/Makefile
696         distrib/m4/Makefile
697         doc/Makefile
698         etc/Makefile
699         etc/afpd/Makefile
700         etc/afpd/nls/Makefile
701         etc/atalkd/Makefile
702         etc/uams/Makefile
703         etc/uams/uams_krb4/Makefile
704         etc/papd/Makefile
705         etc/psf/Makefile
706         include/Makefile
707         include/atalk/Makefile
708         libatalk/Makefile
709         libatalk/adouble/Makefile
710         libatalk/asp/Makefile
711         libatalk/atp/Makefile
712         libatalk/cnid/Makefile
713         libatalk/compat/Makefile
714         libatalk/dsi/Makefile
715         libatalk/nbp/Makefile
716         libatalk/netddp/Makefile
717         libatalk/util/Makefile
718         macros/Makefile
719         man/Makefile
720         man/man1/Makefile
721         man/man3/Makefile
722         man/man4/Makefile
723         man/man5/Makefile
724         man/man8/Makefile
725         sys/Makefile
726         sys/generic/Makefile
727         sys/generic/sys/Makefile
728         sys/netatalk/Makefile
729         sys/netbsd/Makefile
730         sys/netbsd/netatalk/Makefile
731         sys/solaris/Makefile
732         sys/solaris/Makefile.kernel
733         sys/sunos/Makefile
734         sys/ultrix/Makefile
735         ],
736         [chmod a+x distrib/config/netatalk-config contrib/shell_utils/apple_*]
737 )
738