]> arthur.barton.de Git - netatalk.git/blob - configure.ac
Map special Mac folder names to hidden UNIX names
[netatalk.git] / configure.ac
1 dnl configure.in for netatalk
2
3 AC_INIT(etc/afpd/main.c)
4
5 NETATALK_VERSION=`cat $srcdir/VERSION`
6 AC_SUBST(NETATALK_VERSION)
7
8 AC_CANONICAL_SYSTEM
9 AM_INIT_AUTOMAKE(netatalk, ${NETATALK_VERSION})
10 AM_CONFIG_HEADER(config.h)
11 AM_MAINTAINER_MODE([enable])
12
13 dnl Checks for programs.
14 AC_PROG_AWK
15 AC_PROG_CC
16 AC_PROG_CC_C99
17 AC_PROG_INSTALL
18 AC_PROG_LN_S
19 AC_PROG_MAKE_SET
20 AC_LIBTOOL_DLOPEN
21 AC_PROG_LIBTOOL
22 AC_PROG_PERL
23 AC_PROG_GREP
24 AC_PROG_PS
25
26 AM_PROG_CC_C_O
27
28 dnl Checks for header files.
29 AC_HEADER_DIRENT
30 AC_HEADER_STDC
31 AC_HEADER_SYS_WAIT
32 AC_CHECK_HEADERS(fcntl.h limits.h stdint.h strings.h time.h sys/param.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 statfs.h sys/types.h dlfcn.h errno.h sys/errno.h sys/uio.h langinfo.h locale.h sys/filio.h)
33 AC_CHECK_HEADER(sys/cdefs.h,,
34         AC_MSG_RESULT([enabling generic cdefs.h from tree])
35         CFLAGS="-I\$(top_srcdir)/sys/generic $CFLAGS"
36 )
37 AC_CHECK_HEADERS([sys/mount.h], , , 
38 [#ifdef HAVE_SYS_PARAM_H
39 #include <sys/param.h>
40 #endif
41 ])
42
43 dnl Checks for typedefs, structures, and compiler characteristics.
44 AC_C_CONST
45 AC_TYPE_UID_T
46 AC_C_INLINE
47 AC_TYPE_MODE_T
48 AC_TYPE_OFF_T
49 AC_TYPE_PID_T
50 AC_TYPE_SIZE_T
51 AC_STRUCT_ST_RDEV
52 AC_HEADER_TIME
53 AC_STRUCT_TM
54
55 dnl --------------------------------------------------------------------------
56 dnl check if dlsym needs to add an underscore, uses libtool macros 
57 dnl --------------------------------------------------------------------------
58 AC_LTDL_DLLIB
59 AC_CHECK_FUNCS(dlopen dlsym dlclose)
60 AC_LTDL_DLSYM_USCORE
61 if test x"$libltdl_cv_need_uscore" = xyes; then
62     AC_DEFINE(DLSYM_PREPEND_UNDERSCORE, 1, [BSD compatibility macro])
63 fi
64
65 dnl Checks for library functions.
66 AC_TYPE_GETGROUPS
67 AC_PROG_GCC_TRADITIONAL
68 AC_FUNC_MEMCMP
69 AC_HEADER_MAJOR
70 AC_FUNC_MMAP
71 AC_TYPE_SIGNAL
72 AC_FUNC_UTIME_NULL
73 AC_FUNC_WAIT3
74 AC_CHECK_FUNCS(getcwd gethostname gettimeofday getusershell mkdir rmdir select socket strdup strcasestr strstr strtoul strchr memcpy)
75 AC_CHECK_FUNCS(backtrace_symbols setlocale nl_langinfo strlcpy strlcat setlinebuf dirfd pselect access pread pwrite)
76 AC_CHECK_FUNCS(waitpid getcwd strdup strndup strnlen strtoul strerror chown fchown chmod fchmod chroot link mknod mknod64)
77 ac_neta_haveatfuncs=yes
78 AC_CHECK_FUNCS(openat renameat fstatat unlinkat, , ac_neta_haveatfuncs=no)
79 if test x"$ac_neta_haveatfuncs" = x"yes" ; then
80    AC_DEFINE([_ATFILE_SOURCE], 1, AT file source)
81    AC_DEFINE([HAVE_ATFUNCS], 1, whether at funcs are available)
82 fi
83
84 AC_CHECK_MEMBERS(struct tm.tm_gmtoff,,, [#include <time.h>])
85
86 AC_CHECK_FUNC(gethostbyname,,[AC_CHECK_LIB(nsl,gethostbyname)])
87 AC_CHECK_FUNC(connect,,[AC_CHECK_LIB(socket,connect)])
88 dnl search for necessary libs for libpthread stuff
89 AC_SEARCH_LIBS(pthread_sigmask, pthread,, 
90                [AC_MSG_ERROR([cannot find pthread_sigmask in libc or libpthread])])
91 if test x"$ac_cv_search_pthread_sigmask" != x"none required" ; then
92    PTHREAD_LIBS=$ac_cv_search_pthread_sigmask
93 fi
94 AC_SUBST(PTHREAD_LIBS)
95 AC_CACHE_SAVE
96
97 dnl Checks for (v)snprintf
98 NETATALK_SNPRINTF_CHECK
99
100 dnl --------------------------------------------------------------------------
101 dnl 64bit platform check
102 dnl --------------------------------------------------------------------------
103
104 AC_MSG_CHECKING([whether to check for 64bit libraries])
105 # Test if the compiler is in 64bit mode
106 echo 'int i;' > conftest.$ac_ext
107 atalk_cv_cc_64bit_output=no
108 if AC_TRY_EVAL(ac_compile); then
109     case `/usr/bin/file conftest.$ac_objext` in
110     *"ELF 64"*)
111       atalk_cv_cc_64bit_output=yes
112       ;;
113     esac
114 fi
115 rm -rf conftest*
116
117 case $host_cpu:$atalk_cv_cc_64bit_output in
118 powerpc64:yes | s390x:yes | sparc*:yes | x86_64:yes | i386:yes)
119     case $target_os in
120     solaris2*)
121         AC_MSG_RESULT([yes])
122         atalk_libname="lib/64"
123         ;;
124     *bsd* | dragonfly*)
125         AC_MSG_RESULT([no])
126         atalk_libname="lib"
127         ;;
128     *)
129         AC_MSG_RESULT([yes])
130         atalk_libname="lib64"
131         ;;
132     esac
133     ;;
134 *:*)
135     AC_MSG_RESULT([no])
136     atalk_libname="lib"
137     ;;
138 esac
139
140 dnl --------------------------------------------------------------------------
141 dnl specific configuration comes in here:
142 dnl --------------------------------------------------------------------------
143
144
145 netatalk_cv_admin_group=yes
146 AC_MSG_CHECKING([for administrative group support])
147 AC_ARG_ENABLE(admin-group,
148         [  --disable-admin-group   disable admin group],[
149         if test x"$enableval" = x"no"; then
150                 AC_DEFINE(ADMIN_GRP, 0, [Define if the admin group should be enabled])
151                 netatalk_cv_admin_group=no
152                 AC_MSG_RESULT([no])
153         else
154                 AC_DEFINE(ADMIN_GRP, 1, [Define if the admin group should be enabled])
155                 AC_MSG_RESULT([yes])
156         fi],[
157                 AC_DEFINE(ADMIN_GRP, 1, [Define if the admin group should be enabled])
158                 AC_MSG_RESULT([yes])
159         ]
160 )
161
162 NETATALK_AFS_CHECK
163
164 NETATALK_CONFIG_DIRS
165
166 netatalk_cv_with_cracklib=no
167 AC_ARG_WITH(cracklib,
168         [  --with-cracklib=DICT    enable/set location of cracklib dictionary],[
169         if test "x$withval" != "xno" ; then
170                 cracklib="$withval"
171                 AC_CHECK_LIB(crack, main, [
172                         AC_DEFINE(USE_CRACKLIB, 1, [Define if cracklib should be used])
173                         LIBS="$LIBS -lcrack"
174                         if test "$cracklib" = "yes"; then
175                                 cracklib="/usr/$atalk_libname/cracklib_dict"
176                         fi
177                         AC_DEFINE_UNQUOTED(_PATH_CRACKLIB, "$cracklib",
178                                 [path to cracklib dictionary])
179                         AC_MSG_RESULT([setting cracklib dictionary to $cracklib])
180                         netatalk_cv_with_cracklib=yes
181                         ],[
182                         AC_MSG_ERROR([cracklib not found!])
183                         ]
184                 )
185         fi
186         ]
187 )
188 AC_MSG_CHECKING([for cracklib support])
189 AC_MSG_RESULT([$netatalk_cv_with_cracklib])
190
191 netatalk_cv_ddp_enabled=no
192 AC_MSG_CHECKING([whether to enable DDP])
193 AC_ARG_ENABLE(ddp,
194         [  --enable-ddp            enable DDP (AppleTalk)],[
195         if test "$enableval" = "yes"; then 
196                 AC_MSG_RESULT([yes])
197                 netatalk_cv_ddp_enabled=yes
198         else
199                 AC_MSG_RESULT([yes])
200                 AC_DEFINE(NO_DDP, 1, [Define if DDP should be disabled])
201         fi
202         ],[
203                 AC_MSG_RESULT([no])
204                 AC_DEFINE(NO_DDP, 1, [Define if DDP should be disabled])
205         ]
206 )
207
208 AC_MSG_CHECKING([whether to enable debug code])
209 AC_ARG_ENABLE(debug1,
210         [  --enable-debug1         enable debug code],[
211         if test "$enableval" != "no"; then
212                 if test "$enableval" = "yes"; then
213                         AC_DEFINE(DEBUG1, 1, [Define if debugging information should be included])
214                 else
215                         AC_DEFINE_UNQUOTED(DEBUG1, $enableval, [Define if debugging information should be included])
216                 fi 
217                 AC_MSG_RESULT([yes])
218         else
219                 AC_MSG_RESULT([no])
220         fi
221         ],[
222                 AC_MSG_RESULT([no])
223         ]
224 )
225
226 AC_MSG_CHECKING([whether to enable verbose debug code])
227 AC_ARG_ENABLE(debug,
228         [  --enable-debug          enable verbose debug code],[
229         if test "$enableval" != "no"; then
230                 if test "$enableval" = "yes"; then
231                         AC_DEFINE(DEBUG, 1, [Define if verbose debugging information should be included])
232                 else
233                         AC_DEFINE_UNQUOTED(DEBUG, $enableval, [Define if verbose debugging information should be included])
234                 fi 
235                 AC_MSG_RESULT([yes])
236         else
237                 AC_MSG_RESULT([no])
238         AC_DEFINE(NDEBUG, 1, [Disable assertions])
239         fi
240         ],[
241                 AC_MSG_RESULT([no])
242         AC_DEFINE(NDEBUG, 1, [Disable assertions])
243         ]
244 )
245
246 AC_MSG_CHECKING([whether to enable debugging with debuggers])
247 AC_ARG_ENABLE(debugging,
248         [  --enable-debugging      disable SIGALRM timers and DSI tickles (eg for debugging with gdb/dbx/...)],[
249         if test "$enableval" != "no"; then
250                 if test "$enableval" = "yes"; then
251                         AC_DEFINE(DEBUGGING, 1, [Define if you want to disable SIGALRM timers and DSI tickles])
252                 else
253                         AC_DEFINE_UNQUOTED(DEBUGGING, $enableval, [Define if you want to disable SIGALRM timers and DSI tickles])
254                 fi 
255                 AC_MSG_RESULT([yes])
256         else
257                 AC_MSG_RESULT([no])
258         fi
259         ],[
260                 AC_MSG_RESULT([no])
261         ]
262 )
263
264 AC_SYS_LARGEFILE([], AC_MSG_ERROR([AFP 3.x support requires Large File Support.]))
265 AC_CHECK_ICONV
266
267 dnl ----------- A NOTE ABOUT DROPKLUDGE
268 dnl The trouble with this fix is that if you know what the file is called, it
269 dnl can be read from the Unix side.  That's okay for most academic institutions
270 dnl since the students don't have telnet access to the Mac servers.  There is
271 dnl currently no one working on further development/fixes of DROPKLUDGE.
272 dnl -----------
273
274 netatalk_cv_dropkludge=no
275 AC_MSG_CHECKING([whether to enable experimental dropbox support])
276 AC_ARG_ENABLE(dropkludge,
277         [  --enable-dropkludge     enable the experimental dropbox fix (INSECURE!) ],[
278         if test "$enableval" = "yes"; then 
279                 AC_DEFINE(DROPKLUDGE, 1, [Define if you want to use the experimental dropkludge support])
280                 AC_MSG_RESULT([yes])
281                 netatalk_cv_dropkludge=yes
282         else
283                 AC_MSG_RESULT([no])
284         fi
285         ],[
286                 AC_MSG_RESULT([no])
287         ]
288 )
289
290 netatalk_cv_force_uidgid=no
291 AC_MSG_CHECKING([whether to enable forcing of uid/gid per volume])
292 AC_ARG_ENABLE(force-uidgid,
293         [  --enable-force-uidgid   allow forcing of uid/gid per volume (BROKEN) ],[
294         if test "$enableval" = "yes"; then
295                 AC_DEFINE(FORCE_UIDGID, 1, [Define if you want forcing of uid/gid per volume])
296                 AC_MSG_RESULT([enabling forcing of uid/gid per volume])
297                 AC_MSG_RESULT([yes])
298                 netatalk_cv_force_uidgid=yes
299         else
300                 AC_MSG_RESULT([no])
301         fi
302         ],[
303                 AC_MSG_RESULT([no])
304         ]
305 )
306
307 dnl Check for CNID database backends
308 bdb_required=no
309 AC_NETATALK_CNID([bdb_required=yes],[bdb_required=no])
310
311 dnl Check for quota support
312 AC_CHECK_QUOTA
313
314 dnl Check for optional server location protocol support (used by MacOS X)
315 NETATALK_SRVLOC
316
317 dnl Check for optional Zeroconf support
318 NETATALK_ZEROCONF
319
320 dnl Check for PAM libs
321 netatalk_cv_use_pam=no
322 AC_PATH_PAM([
323         use_pam_so=yes
324         compile_pam=yes
325         netatalk_cv_use_pam=yes
326         AC_DEFINE(USE_PAM, 1, [Define to enable PAM support])
327 ])
328
329 netatalk_cv_use_shadowpw=no
330 AC_ARG_WITH(shadow,
331         [  --with-shadow           enable shadow password support [[auto]]],
332         [netatalk_cv_use_shadowpw="$withval"],
333         [netatalk_cv_use_shadowpw=auto]
334 )
335
336 if test "x$netatalk_cv_use_shadowpw" != "xno"; then
337     AC_CHECK_HEADER([shadow.h])
338     if test x"$ac_cv_header_shadow_h" = x"yes"; then
339         netatalk_cv_use_shadowpw=yes
340         AC_DEFINE(SHADOWPW, 1, [Define if shadow passwords should be used])
341     else 
342       if test "x$shadowpw" = "xyes"; then
343         AC_MSG_ERROR([shadow support not available])
344       else
345         netatalk_cv_use_shadowpw=no
346       fi
347     fi 
348 fi
349
350 AC_MSG_CHECKING([whether shadow support should be enabled])
351 if test "x$netatalk_cv_use_shadowpw" = "xyes"; then
352         AC_MSG_RESULT([yes])
353 else
354         AC_MSG_RESULT([no])
355 fi
356         
357         
358         
359 netatalk_cv_use_shellcheck=yes
360 AC_MSG_CHECKING([whether checking for a valid shell should be enabled])
361 AC_ARG_ENABLE(shell-check,
362         [  --disable-shell-check   disable checking for a valid shell],[
363         if test "$enableval" = "no"; then 
364                 AC_DEFINE(DISABLE_SHELLCHECK, 1, [Define if shell check should be disabled])
365                 AC_MSG_RESULT([no])
366                 netatalk_cv_use_shellcheck=no
367         else
368                 AC_MSG_RESULT([yes])
369         fi
370         ],[
371                 AC_MSG_RESULT([yes])
372         ]
373 )
374
375 NETATALK_TCP_WRAPPERS
376
377 AC_MSG_CHECKING([whether system (fcntl) locking should be disabled])
378 AC_ARG_ENABLE(locking,
379         [  --disable-locking       disable system locking],[
380                 if test "$enableval" = "no"; then
381                         AC_DEFINE(DISABLE_LOCKING, 1, [Define if system (fcntl) locking should be disabled])
382                         AC_MSG_RESULT([yes])
383                 else
384                         AC_MSG_RESULT([no])
385                 fi
386                 
387         ],[
388                 AC_MSG_RESULT([no])
389         ]
390
391 )
392
393 AC_ARG_ENABLE(redhat,
394         [  --enable-redhat         obsoleted ],[
395         echo "ERROR: --enable-redhat is obsoleted. Use --enable-redhat-sysv or --enable-redhat-systemd."
396         exit 1
397         ]
398 )
399
400 AC_ARG_ENABLE(redhat-sysv,
401         [  --enable-redhat-sysv    use redhat-style sysv (upstart) configuration ],[
402         if test "$enableval" = "yes"; then
403                 sysv_style=redhat-sysv
404         fi
405         AC_MSG_RESULT([enabling redhat-style sysv support])
406         ]
407 )
408
409 AC_ARG_ENABLE(redhat-systemd,
410         [  --enable-redhat-systemd use redhat-style systemd (>=Fedora15) configuration ],[
411         if test "$enableval" = "yes"; then
412                 sysv_style=redhat-systemd
413         fi
414         AC_MSG_RESULT([enabling redhat-style systemd support])
415         ]
416 )
417
418 AC_ARG_ENABLE(suse,
419         [  --enable-suse           obsoleted ],[
420         echo "ERROR: --enable-suse is obsoleted. Use --enable-suse-sysv or --enable-suse-systemd."
421         exit 1
422         ]
423 )
424
425 AC_ARG_ENABLE(suse-sysv,
426         [  --enable-suse-sysv      use suse-style sysv configuration ],[
427         if test "$enableval" = "yes"; then
428                 sysv_style=suse-sysv
429         fi
430         AC_MSG_RESULT([enabling suse-style sysv support])
431         ]
432 )
433
434 AC_ARG_ENABLE(suse-systemd,
435         [  --enable-suse-systemd   use suse-style systemd (>=openSUSE12.1) configuration ],[
436         if test "$enableval" = "yes"; then
437                 sysv_style=suse-systemd
438         fi
439         AC_MSG_RESULT([enabling suse-style systemd support])
440         ]
441 )
442
443 AC_ARG_ENABLE(gentoo,
444         [  --enable-gentoo         use gentoo-style sysv configuration ],[
445         if test "$enableval" = "yes"; then
446                 sysv_style=gentoo
447         fi
448         AC_MSG_RESULT([enabling gentoo-style sysv support])
449         ]
450 )
451
452 AC_ARG_ENABLE(netbsd,
453         [  --enable-netbsd         use NetBSD-style rc.d configuration ],
454         if test "x$enableval" = "xyes"; then
455                 sysv_style=netbsd
456         fi
457         AC_MSG_RESULT([enabling NetBSD-style rc.d support])
458 )
459
460 AC_ARG_ENABLE(debian,
461         [  --enable-debian         use debian-style sysv configuration ],[
462         if test "$enableval" = "yes"; then
463                 sysv_style=debian
464         fi
465         AC_MSG_RESULT([enabling debian-style sysv support])
466         ]
467 )
468
469 AC_ARG_ENABLE(systemd,
470         [  --enable-systemd        use general systemd configuration],[
471         if test "$enableval" = "yes"; then
472                 sysv_style=systemd
473         fi
474         AC_MSG_RESULT([enabling general systemd support])
475         ]
476 )
477
478 dnl ----- timelord compilation (disabled by default)
479 AC_MSG_CHECKING([whether timelord should be compiled])
480 compile_timelord=no
481 AC_ARG_ENABLE(timelord,
482         [  --enable-timelord       enable compilation of timelord server],
483         [compile_timelord="$enableval"],
484         [compile_timelord="no"]
485 )
486 AC_MSG_RESULT([$compile_timelord])
487
488 dnl ----- a2boot compilation (disabled by default)
489 AC_MSG_CHECKING([whether a2boot should be compiled])
490 compile_a2boot=no
491 AC_ARG_ENABLE(a2boot,
492         [  --enable-a2boot         enable compilation of Apple2 boot server],
493         [compile_a2boot="$enableval"],
494         [compile_a2boot="no"]
495 )
496 AC_MSG_RESULT([$compile_a2boot])
497
498 AC_ARG_WITH(uams-path,
499         [  --with-uams-path=PATH   path to UAMs [[PKGCONF/uams]]],[
500                 uams_path="$withval"
501         ],[
502                 uams_path="${PKGCONFDIR}/uams"
503         ]
504 )
505
506 NETATALK_AC_CUPS
507
508 dnl check if we can use attribute unused (gcc only) from ethereal
509 AC_MSG_CHECKING(to see if we can add '__attribute__((unused))' to CFLAGS)
510 if test x$GCC != x ; then
511   CFLAGS="-D_U_=\"__attribute__((unused))\" $CFLAGS"
512   AC_MSG_RESULT(yes)
513 else
514   CFLAGS="-D_U_=\"\" $CFLAGS"
515   AC_MSG_RESULT(no)
516 fi
517
518 dnl --------------------------------------------------------------------------
519 dnl FHS stuff has to be done last because it overrides other defaults
520 dnl --------------------------------------------------------------------------
521
522 AC_MSG_CHECKING([whether to use Filesystem Hierarchy Standard (FHS) compatibility])
523 AC_ARG_ENABLE(fhs,
524         [  --enable-fhs            use Filesystem Hierarchy Standard (FHS) compatibility],[
525         if test "$enableval" = "yes"; then
526                 uams_path="${libdir}/netatalk"
527                 sysconfdir="/etc"
528                 PKGCONFDIR=${sysconfdir}/netatalk
529                 SERVERTEXT="${PKGCONFDIR}/msg"
530                 use_pam_so=yes
531                 mandir="/usr/share/man"
532                 AC_DEFINE(FHS_COMPATIBILITY, 1, [Define if you want compatibily with the FHS])
533                 AC_MSG_RESULT([yes])
534         else
535                 AC_MSG_RESULT([no])
536         fi
537         ],[
538                 AC_MSG_RESULT([no])
539         ]
540 )
541
542 dnl --------------------------------------------------------------------------
543 dnl post-FHS substitutions, etc
544 dnl --------------------------------------------------------------------------
545
546 dnl ***** UAMS_PATH
547 dnl AC_DEFINE_UNQUOTED(UAMS_PATH, "${uams_path}",
548 dnl     [path to UAMs [default=PKGCONF/uams]])
549 UAMS_PATH="${uams_path}"
550 AC_SUBST(UAMS_PATH)
551
552 dnl --------------------------------------------------------------------------
553 dnl drop in includes for top level directory structures here...
554 dnl --------------------------------------------------------------------------
555
556 dnl Note: $(top_srcdir)/include should be added before all other includes
557 dnl       so that includes from that directory a preferred to includes from
558 dnl       /usr/include or similar places.
559 LIBS="$LIBS -L\$(top_srcdir)/libatalk"
560 CFLAGS="-I\$(top_srcdir)/include $CFLAGS -I\$(top_srcdir)/sys"
561
562 AC_DEFINE(OPEN_NOFOLLOW_ERRNO, ELOOP, errno returned by open with O_NOFOLLOW)
563
564 dnl --------------------------------------------------------------------------
565 dnl specific configuration comes in here:
566 dnl --------------------------------------------------------------------------
567
568 dnl ac_cv_target_os is now host_os, ac_cv_target_cpu is now host_cpu
569
570 dnl --------------------- determine operating system from "target"
571 case "$host_os" in
572         *aix*)                          this_os=aix ;;
573         *kfreebsd*-gnu)                 this_os=kfreebsd-gnu ;;
574         *freebsd*)                      this_os=freebsd ;;
575         *hpux11*)                       this_os=hpux11 ;;
576         *irix*)                         this_os=irix ;;
577         *linux*)                        this_os=linux ;;
578         *osx*)                          this_os=macosx ;;
579         *darwin*)                       this_os=macosx ;;
580         *netbsd*)                       this_os=netbsd ;;
581         *openbsd*)                      this_os=openbsd ;;
582         *osf*)                          this_os=tru64 ;;
583         *solaris*)                      this_os=solaris ;;
584 esac
585
586 case "$host_cpu" in
587         i386|i486|i586|i686|k7)         this_cpu=x86 ;;
588         alpha)                                          this_cpu=alpha ;;
589         mips)                                           this_cpu=mips ;;
590         powerpc|ppc)                            this_cpu=ppc ;;
591 esac
592
593 dnl --------------------- GNU source
594 case "$this_os" in
595         linux)  AC_DEFINE(_GNU_SOURCE, 1, [Whether to use GNU libc extensions])
596         ;;
597      kfreebsd-gnu) AC_DEFINE(_GNU_SOURCE, 1, [Whether to use GNU libc extensions])
598         ;;
599 esac
600
601 dnl --------------------- operating system specific flags (port from sys/*)
602
603 dnl ----- AIX specific -----
604 if test x"$this_os" = "xaix"; then
605         AC_MSG_RESULT([ * AIX specific configuration])
606         AC_DEFINE(NO_STRUCT_TM_GMTOFF, 1, [Define if the gmtoff member of struct tm is not available])
607
608         dnl This is probably a lie; AIX 4.3 supports a 64-bit long
609         dnl compilation environment.  It's enough to get things defined
610         dnl right in endian.h provided that long long is supported, though.
611         AC_DEFINE(HAVE_32BIT_LONGS, 1, [Define if the data type long has 32 bit])
612 fi
613
614 dnl ----- FreeBSD specific -----
615 if test x"$this_os" = "xfreebsd"; then 
616         AC_MSG_RESULT([ * FreeBSD specific configuration])
617         AC_DEFINE(BSD4_4, 1, [BSD compatiblity macro])
618         AC_DEFINE(FREEBSD, 1, [Define if OS is FreeBSD])
619     AC_DEFINE(OPEN_NOFOLLOW_ERRNO, EMLINK, errno returned by open with O_NOFOLLOW)
620 fi
621
622 dnl ----- GNU/kFreeBSD specific -----
623 if test x"$this_os" = "xkfreebsd-gnu"; then 
624         AC_MSG_RESULT([ * GNU/kFreeBSD specific configuration])
625         AC_DEFINE(BSD4_4, 1, [BSD compatiblity macro])
626         AC_DEFINE(FREEBSD, 1, [Define if OS is FreeBSD])
627     AC_DEFINE(OPEN_NOFOLLOW_ERRNO, EMLINK, errno returned by open with O_NOFOLLOW)
628 fi
629
630 dnl ----- HP-UX 11 specific -----
631 if test x"$this_os" = "xhpux11"; then
632         AC_MSG_RESULT([ * HP-UX 11 specific configuration])
633
634         AC_DEFINE(_ISOC9X_SOURCE, 1, [Compatibility macro])
635         AC_DEFINE(NO_STRUCT_TM_GMTOFF, 1, [Define if the gmtoff member of struct tm is not available])
636 fi
637
638 dnl ----- IRIX specific -----
639 if test x"$this_os" = "xirix"; then
640         AC_MSG_RESULT([ * IRIX specific configuration])
641
642         AC_DEFINE(NO_STRUCT_TM_GMTOFF, 1, [Define if the gmtoff member of struct tm is not available])
643 fi
644
645 dnl ----- Linux specific -----
646 if test x"$this_os" = "xlinux"; then 
647         AC_MSG_RESULT([ * Linux specific configuration])
648         
649         dnl ----- kernel 2.6 changed struct at_addr to atalk_addr
650         AC_MSG_CHECKING([for struct atalk_addr])
651 dnl     AC_COMPILE_IFELSE([
652         AC_TRY_COMPILE([
653 #include <sys/socket.h>
654 #include <asm/types.h>
655 #include <linux/atalk.h>
656
657         struct atalk_addr foo;
658 ],
659 [ ], [
660                 ac_have_atalk_addr=yes
661                 AC_MSG_RESULT([yes])
662         ], [
663                 AC_MSG_RESULT([no])
664         ])
665
666 if test "x$ac_have_atalk_addr" = "xyes"; then
667         AC_DEFINE(HAVE_ATALK_ADDR, 1, [set if struct at_addr is called atalk_addr])
668 fi
669
670         dnl ----- check if we need the quotactl wrapper
671 #       AC_CHECK_HEADERS(sys/quota.h linux/quota.h)
672 #       AC_CHECK_FUNC(quotactl,,
673 #               AC_DEFINE(NEED_QUOTACTL_WRAPPER, 1, [Define if the quotactl wrapper is needed])
674 #               AC_MSG_RESULT([enabling quotactl wrapper])
675 #       )
676
677         # For quotas on Linux XFS filesystems
678         
679         # For linux > 2.5.56
680         AC_CHECK_HEADERS(linux/dqblk_xfs.h,,
681                 [AC_CHECK_HEADERS(linux/xqm.h linux/xfs_fs.h)
682                 AC_CHECK_HEADERS(xfs/libxfs.h xfs/xqm.h xfs/xfs_fs.h)]
683         )
684
685
686         dnl ----- as far as I can tell, dbtob always does the wrong thing
687         dnl ----- on every single version of linux I've ever played with.
688         dnl ----- see etc/afpd/quota.c
689         AC_DEFINE(HAVE_BROKEN_DBTOB, 1, [Define if dbtob is broken])
690
691         dnl ----- Linux/alpha specific -----
692         if test x"$this_cpu" = "xalpha"; then 
693                 AC_MSG_RESULT([enabling gcc memcpy bug workaround])
694                 AC_DEFINE(HAVE_GCC_MEMCPY_BUG, 1, [Define if memcpy is buggy])
695         fi
696         need_dash_r=no
697
698
699 fi
700
701 dnl ----- Mac OSX specific -----
702 if test x"$this_os" = "xmacosx"; then 
703         AC_MSG_RESULT([ * Mac OSX specific configuration])
704         AC_DEFINE(BSD4_4, 1, [BSD compatiblity macro])
705         AC_DEFINE(HAVE_2ARG_DBTOB, 1, [Define if dbtob takes two arguments])
706         dnl AC_DEFINE(NO_DLFCN_H)
707         AC_DEFINE(NO_DDP, 1, [Define if DDP should be disabled])
708         AC_DEFINE(NO_QUOTA_SUPPORT, 1, [Define if Quota support should be disabled])
709         AC_DEFINE(MACOSX_SERVER, 1, [Define if compiling for MacOS X Server])
710 fi
711
712 dnl ----- NetBSD specific -----
713 if test x"$this_os" = "xnetbsd"; then 
714         AC_MSG_RESULT([ * NetBSD specific configuration])
715         AC_DEFINE(BSD4_4, 1, [BSD compatiblity macro])
716         AC_DEFINE(NETBSD, 1, [Define if OS is NetBSD])
717     AC_DEFINE(OPEN_NOFOLLOW_ERRNO, EFTYPE, errno returned by open with O_NOFOLLOW)
718
719         CFLAGS="-I\$(top_srcdir)/sys/netbsd $CFLAGS"
720         need_dash_r=yes 
721
722         dnl ----- NetBSD does not have crypt.h, uses unistd.h -----
723         AC_DEFINE(UAM_DHX, 1, [Define if the DHX UAM modules should be compiled])
724 fi
725
726 dnl ----- OpenBSD specific -----
727 if test x"$this_os" = "xopenbsd"; then 
728         AC_MSG_RESULT([ * OpenBSD specific configuration])
729     AC_DEFINE(BSD4_4, 1, [BSD compatiblity macro])
730         dnl ----- OpenBSD does not have crypt.h, uses unistd.h -----
731         AC_DEFINE(UAM_DHX, 1, [Define if the DHX UAM modules should be compiled])
732     AC_DEFINE(NO_DDP, 1, [Define if DDP should be disabled])
733 fi
734
735 dnl ----- Solaris specific -----
736 if test x"$this_os" = "xsolaris"; then 
737         AC_MSG_RESULT([ * Solaris specific configuration])
738         AC_DEFINE(__svr4__, 1, [Solaris compatibility macro])
739         AC_DEFINE(_ISOC9X_SOURCE, 1, [Compatibility macro])
740         AC_DEFINE(NO_STRUCT_TM_GMTOFF, 1, [Define if the gmtoff member of struct tm is not available])
741         AC_DEFINE(SOLARIS, 1, [Solaris compatibility macro])
742     AC_DEFINE(_XOPEN_SOURCE, 600, [Solaris compilation environment])
743     AC_DEFINE(__EXTENSIONS__,  1, [Solaris compilation environment])
744         CFLAGS="-I\$(top_srcdir)/sys/generic $CFLAGS"
745         need_dash_r=yes
746         sysv_style=solaris
747
748         solaris_module=no
749         AC_MSG_CHECKING([if we can build Solaris kernel module])
750         if test -x /usr/ccs/bin/ld && test x"$netatalk_cv_ddp_enabled" = x"yes" ; then
751                 solaris_module=yes
752         fi
753         AC_MSG_RESULT([$solaris_module])
754
755         COMPILE_64BIT_KMODULE=no
756         KCFLAGS=""
757         KLDFLAGS=""
758         COMPILE_KERNEL_GCC=no
759
760         if test "$solaris_module" = "yes"; then
761            dnl Solaris kernel module stuff
762            AC_MSG_CHECKING([if we have to build a 64bit kernel module])
763
764            # check for isainfo, if not found it has to be a 32 bit kernel (<=2.6)       
765            if test -x /usr/bin/isainfo; then
766                 # check for 64 bit platform
767                 if isainfo -kv | grep '^64-bit'; then
768                         COMPILE_64BIT_KMODULE=yes
769                 fi
770            fi
771
772            AC_MSG_RESULT([$COMPILE_64BIT_KMODULE])
773
774            if test "${GCC}" = yes; then
775                 COMPILE_KERNEL_GCC=yes
776                 if test "$COMPILE_64BIT_KMODULE" = yes; then
777                 
778                         AC_MSG_CHECKING([if we can build a 64bit kernel module])
779                         
780                         case `$CC --version 2>/dev/null` in
781                         [[12]].* | 3.0.*)
782                                 COMPILE_64BIT_KMODULE=no
783                                 COMPILE_KERNEL_GCC=no   
784                                 solaris_module=no;;
785                         *)
786                                 # use for 64 bit
787                                 KCFLAGS="-m64"
788                                 #KLDFLAGS="-melf64_sparc"
789                                 KLDFLAGS="-64";;
790                         esac    
791                         
792                         AC_MSG_RESULT([$COMPILE_64BIT_KMODULE])
793                         
794                 else
795                         KCFLAGS=""
796                         KLDFLAGS=""
797                 fi
798                 KCFLAGS="$KCFLAGS -D_KERNEL -Wall -Wstrict-prototypes"
799            else
800                 if test "$COMPILE_64BIT_KMODULE" = yes; then
801                 # use Sun CC (for a 64-bit kernel, uncomment " -xarch=v9 -xregs=no%appl ")
802                         KCFLAGS="-xarch=v9 -xregs=no%appl"
803                         KLDFLAGS="-64"
804                 else
805                         KCFLAGS=""
806                         KLDFLAGS=""
807                 fi
808                 KCFLAGS="-D_KERNEL $KCFLAGS -mno-app-regs -munaligned-doubles -fpcc-struct-return"
809            fi
810
811            AC_CACHE_CHECK([for timeout_id_t],netatalk_cv_HAVE_TIMEOUT_ID_T,[
812            AC_TRY_LINK([\
813 #include <sys/stream.h>
814 #include <sys/ddi.h>],
815 [\
816 timeout_id_t dummy;
817 ],
818 netatalk_cv_HAVE_TIMEOUT_ID_T=yes,netatalk_cv_HAVE_TIMEOUT_ID_T=no,netatalk_cv_HAVE_TIMEOUT_ID_T=cross)])
819
820            AC_DEFINE(HAVE_TIMEOUT_ID_T, test x"$netatalk_cv_HAVE_TIMEOUT_ID" = x"yes", [define for timeout_id_t])
821         fi
822
823         AC_SUBST(COMPILE_KERNEL_GCC)
824         AC_SUBST(COMPILE_64BIT_KMODULE)
825         AC_SUBST(KCFLAGS)
826         AC_SUBST(KLDFLAGS)
827 fi
828
829 dnl ----- Tru64 specific -----
830 if test x"$this_os" = "xtru64"; then 
831         AC_MSG_RESULT([ * Tru64 specific configuration])
832         AC_DEFINE(NO_DDP, 1, [Define if DDP should be disabled])
833         AC_DEFINE(HAVE_64BIT_LONGS, 1, [Define if the data type long has 64 bit])
834         dnl AC_DEFINE(USE_MOUNT_H)
835         AC_DEFINE(USE_OLD_RQUOTA, 1, [Define to use old rquota])
836         dnl AC_DEFINE(USE_UFS_QUOTA_H)
837         AC_DEFINE(TRU64, 1, [Define on Tru64 platforms])
838         AC_DEFINE(_OSF_SOURCE, 1, [Define if the *passwd UAMs should be used])
839         AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, [Define for Berkeley DB 4])
840         AC_CHECK_LIB(security,set_auth_parameters)
841         CFLAGS="-I\$(top_srcdir)/sys/tru64 $CFLAGS"
842         need_dash_r=no
843         sysv_style=tru64
844 fi
845
846 dnl ------ Check for sendfile() --------
847 netatalk_cv_search_sendfile=yes
848 AC_ARG_ENABLE(sendfile,
849     [  --disable-sendfile       disable sendfile syscall],
850     [if test x"$enableval" = x"no"; then
851             netatalk_cv_search_sendfile=no
852         fi]
853 )
854
855 if test x"$netatalk_cv_search_sendfile" = x"yes"; then
856    case "$host_os" in
857    *linux*)
858         AC_DEFINE(SENDFILE_FLAVOR_LINUX,1,[Whether linux sendfile() API is available])
859         AC_CHECK_FUNC([sendfile], [netatalk_cv_HAVE_SENDFILE=yes])
860         ;;
861
862     *solaris*)
863         AC_DEFINE(SENDFILE_FLAVOR_SOLARIS, 1, [Solaris sendfile()])
864         AC_SEARCH_LIBS(sendfile, sendfile)
865         AC_CHECK_FUNC([sendfile], [netatalk_cv_HAVE_SENDFILE=yes])
866         ;;
867
868     *freebsd*)
869         AC_DEFINE(SENDFILE_FLAVOR_BSD, 1, [Define if the sendfile() function uses BSD semantics])
870         AC_CHECK_FUNC([sendfile], [netatalk_cv_HAVE_SENDFILE=yes])
871         ;;
872
873     *)
874         ;;
875
876     esac
877
878     if test x"$netatalk_cv_HAVE_SENDFILE" = x"yes"; then
879         AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
880     fi
881 fi
882
883 dnl -- check for libgcrypt, if found enables DHX UAM
884 AM_PATH_LIBGCRYPT([1:1.2.3],[neta_cv_compile_dhx2=yes
885                         neta_cv_have_libgcrypt=yes
886                         AC_MSG_NOTICE([Enabling DHX2 UAM])
887                         AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define if the DHX2 modules should be built with libgcrypt])
888                         AC_DEFINE(UAM_DHX2, 1, [Define if the DHX2 UAM modules should be compiled])
889                         ])
890
891 dnl -- look for openssl, if found enables DHX UAM and Randnum UAM
892 AC_PATH_SSL
893
894 dnl Check for Berkeley DB library
895 if test "x$bdb_required" = "xyes"; then
896         AC_PATH_BDB(, [
897                 AC_MSG_RESULT([])
898                 AC_MSG_RESULT([Make sure you have the required Berkeley DB libraries AND headers installed.])
899                 AC_MSG_RESULT([You can download the latest version from http://www.sleepycat.com.])
900                 AC_MSG_RESULT([If you have installed BDB in a non standard location use the])
901                 AC_MSG_RESULT([--with-bdb=/path/to/bdb configure option and make sure])
902                 AC_MSG_RESULT([your linker is configured to check for libraries there.])
903                 AC_MSG_ERROR([Berkeley DB library required but not found!])
904         ])
905 fi
906
907 dnl -- check for crypt
908 AC_CRYPT
909
910 dnl --------------------- check for building PGP UAM module
911
912 AC_MSG_CHECKING([whether the PGP UAM should be build])
913 AC_ARG_ENABLE(pgp-uam,
914         [  --enable-pgp-uam        enable build of PGP UAM module],[
915         if test "$enableval" = "yes"; then 
916                 if test "x$neta_cv_have_openssl" = "xyes"; then 
917                         AC_DEFINE(UAM_PGP, 1, [Define if the PGP UAM module should be compiled])
918                         compile_pgp=yes
919                         AC_MSG_RESULT([yes])
920                 else
921                         AC_MSG_RESULT([no])
922                 fi
923         fi
924         ],[
925                 AC_MSG_RESULT([no])
926         ]
927 )
928
929 dnl --------------------- check for building Kerberos v4 UAM module
930
931 AC_MSG_CHECKING([whether the Kerberos IV UAM should be build])
932 AC_ARG_ENABLE(krb4-uam,
933         [  --enable-krb4-uam       enable build of Kerberos v4 UAM module],[
934         if test "$enableval" = "yes"; then
935                 AC_DEFINE(UAM_KRB4, 1, [Define if the Kerberos 4 UAM module should be compiled])
936                 compile_kerberos=yes
937                 AC_MSG_RESULT([yes])
938         else
939                 AC_MSG_RESULT([no])
940         fi
941         ],[
942                 AC_MSG_RESULT([no])
943         ]
944 )
945
946 dnl --------------------- check for building Kerberos V UAM module
947
948 netatalk_cv_build_krb5_uam=no
949 AC_ARG_ENABLE(krbV-uam,
950         [  --enable-krbV-uam       enable build of Kerberos V UAM module],
951         [
952                 if test x"$enableval" = x"yes"; then
953                         NETATALK_GSSAPI_CHECK([
954                                 netatalk_cv_build_krb5_uam=yes
955                         ],[
956                                 AC_MSG_ERROR([need GSSAPI to build Kerberos V UAM])
957                         ])
958                 fi
959         ]
960         
961 )
962
963 AC_MSG_CHECKING([whether Kerberos V UAM should be build])
964 if test x"$netatalk_cv_build_krb5_uam" = x"yes"; then
965         AC_MSG_RESULT([yes])
966 else
967         AC_MSG_RESULT([no])
968 fi
969 AM_CONDITIONAL(USE_GSSAPI, test x"$netatalk_cv_build_krb5_uam" = x"yes")
970
971 dnl --------------------- overwrite the config files . . . or not.
972
973 AC_MSG_CHECKING([whether configuration files should be overwritten])
974 AC_ARG_ENABLE(overwrite,
975         [  --enable-overwrite      overwrite configuration files during installation],
976         [OVERWRITE_CONFIG="${enable_overwrite}"],
977         [OVERWRITE_CONFIG="no"]
978 )
979 AC_MSG_RESULT([$OVERWRITE_CONFIG])
980
981 dnl --------------------- check for LDAP support, for client-side ACL visibility
982 AC_MSG_CHECKING(for LDAP (necessary for client-side ACL visibility))
983 AC_ARG_WITH(ldap,
984     [AS_HELP_STRING([--with-ldap],
985         [LDAP support (default=auto)])],
986     [ case "$withval" in
987       yes|no)
988           with_ldap="$withval"
989                   ;;
990       *)
991           with_ldap=auto
992           ;;
993       esac ])
994 AC_MSG_RESULT($with_ldap)
995
996 if test x"$with_ldap" != x"no" ; then
997         AC_CHECK_HEADER([ldap.h], with_ldap=yes,
998         [ if test x"$with_ldap" = x"yes" ; then
999             AC_MSG_ERROR([Missing LDAP headers])
1000         fi
1001                 with_ldap=no
1002         ])
1003         AC_CHECK_LIB(ldap, ldap_init, with_ldap=yes,
1004         [ if test x"$with_ldap" = x"yes" ; then
1005             AC_MSG_ERROR([Missing LDAP library])
1006         fi
1007                 with_ldap=no
1008         ])
1009 fi
1010
1011 if test x"$with_ldap" = x"yes"; then
1012         AC_DEFINE(HAVE_LDAP,1,[Whether LDAP is available])
1013 fi
1014
1015 dnl --------------------- check for ACL support
1016 AC_MSG_CHECKING(whether to support ACLs)
1017 AC_ARG_WITH(acls,
1018     [AS_HELP_STRING([--with-acls],
1019         [Include ACL support (default=auto)])],
1020     [ case "$withval" in
1021       yes|no)
1022           with_acl_support="$withval"
1023                   ;;
1024       *)
1025           with_acl_support=auto
1026           ;;
1027       esac ],
1028     [with_acl_support=auto])
1029 AC_MSG_RESULT($with_acl_support)
1030
1031 if test x"$with_acl_support" = x"no"; then
1032         AC_MSG_RESULT(Disabling ACL support)
1033         AC_DEFINE(HAVE_NO_ACLS,1,[Whether no ACLs support should be built in])
1034 else
1035     with_acl_support=yes
1036 fi
1037
1038 if test x"$with_acl_support" = x"yes" ; then
1039         AC_MSG_NOTICE(checking whether ACL support is available:)
1040         case "$host_os" in
1041         *sysv5*)
1042                 AC_MSG_NOTICE(Using UnixWare ACLs)
1043                 AC_DEFINE(HAVE_UNIXWARE_ACLS,1,[Whether UnixWare ACLs are available])
1044                 ;;
1045         *solaris*)
1046                 AC_MSG_NOTICE(Using solaris ACLs)
1047                 AC_DEFINE(HAVE_SOLARIS_ACLS,1,[Whether solaris ACLs are available])
1048                 ACL_LIBS="$ACL_LIBS -lsec"
1049                 ;;
1050         *hpux*)
1051                 AC_MSG_NOTICE(Using HPUX ACLs)
1052                 AC_DEFINE(HAVE_HPUX_ACLS,1,[Whether HPUX ACLs are available])
1053                 ;;
1054         *irix*)
1055                 AC_MSG_NOTICE(Using IRIX ACLs)
1056                 AC_DEFINE(HAVE_IRIX_ACLS,1,[Whether IRIX ACLs are available])
1057                 ;;
1058         *aix*)
1059                 AC_MSG_NOTICE(Using AIX ACLs)
1060                 AC_DEFINE(HAVE_AIX_ACLS,1,[Whether AIX ACLs are available])
1061                 ;;
1062         *osf*)
1063                 AC_MSG_NOTICE(Using Tru64 ACLs)
1064                 AC_DEFINE(HAVE_TRU64_ACLS,1,[Whether Tru64 ACLs are available])
1065                 ACL_LIBS="$ACL_LIBS -lpacl"
1066                 ;;
1067         *darwin*)
1068                 AC_MSG_NOTICE(ACLs on Darwin currently not supported)
1069                 AC_DEFINE(HAVE_NO_ACLS,1,[Whether no ACLs support is available])
1070                 ;;
1071         *)
1072                 AC_CHECK_LIB(acl,acl_get_file,[ACL_LIBS="$ACL_LIBS -lacl"])
1073                 case "$host_os" in
1074                 *linux*)
1075                         AC_CHECK_LIB(attr,getxattr,[ACL_LIBS="$ACL_LIBS -lattr"])
1076                         ;;
1077                 esac
1078                 AC_CACHE_CHECK([for POSIX ACL support],netatalk_cv_HAVE_POSIX_ACLS,[
1079                         acl_LIBS=$LIBS
1080                         LIBS="$LIBS $ACL_LIBS"
1081                         AC_TRY_LINK([
1082                                 #include <sys/types.h>
1083                                 #include <sys/acl.h>
1084                         ],[
1085                                 acl_t acl;
1086                                 int entry_id;
1087                                 acl_entry_t *entry_p;
1088                                 return acl_get_entry(acl, entry_id, entry_p);
1089                         ],
1090                         [netatalk_cv_HAVE_POSIX_ACLS=yes],
1091                         [netatalk_cv_HAVE_POSIX_ACLS=no
1092                 with_acl_support=no])
1093                         LIBS=$acl_LIBS
1094                 ])
1095                 if test x"$netatalk_cv_HAVE_POSIX_ACLS" = x"yes"; then
1096                         AC_MSG_NOTICE(Using POSIX ACLs)
1097                         AC_DEFINE(HAVE_POSIX_ACLS,1,[Whether POSIX ACLs are available])
1098                         AC_CACHE_CHECK([for acl_get_perm_np],netatalk_cv_HAVE_ACL_GET_PERM_NP,[
1099                                 acl_LIBS=$LIBS
1100                                 LIBS="$LIBS $ACL_LIBS"
1101                                 AC_TRY_LINK([
1102                                         #include <sys/types.h>
1103                                         #include <sys/acl.h>
1104                                 ],[
1105                                         acl_permset_t permset_d;
1106                                         acl_perm_t perm;
1107                                         return acl_get_perm_np(permset_d, perm);
1108                                 ],
1109                                 [netatalk_cv_HAVE_ACL_GET_PERM_NP=yes],
1110                                 [netatalk_cv_HAVE_ACL_GET_PERM_NP=no])
1111                                 LIBS=$acl_LIBS
1112                         ])
1113                         if test x"$netatalk_cv_HAVE_ACL_GET_PERM_NP" = x"yes"; then
1114                                 AC_DEFINE(HAVE_ACL_GET_PERM_NP,1,[Whether acl_get_perm_np() is available])
1115                         fi
1116
1117                         AC_CACHE_CHECK([for acl_from_mode], netatalk_cv_HAVE_ACL_FROM_MODE,[
1118                                 acl_LIBS=$LIBS
1119                                 LIBS="$LIBS $ACL_LIBS"
1120                 AC_CHECK_FUNCS(acl_from_mode,
1121                                 [netatalk_cv_HAVE_ACL_FROM_MODE=yes],
1122                                 [netatalk_cv_HAVE_ACL_FROM_MODE=no])
1123                                 LIBS=$acl_LIBS
1124                         ])
1125                         if test x"netatalk_cv_HAVE_ACL_FROM_MODE" = x"yes"; then
1126                                 AC_DEFINE(HAVE_ACL_FROM_MODE,1,[Whether acl_from_mode() is available])
1127                         fi
1128
1129
1130                 else
1131                         AC_MSG_NOTICE(ACL support is not avaliable)
1132                         AC_DEFINE(HAVE_NO_ACLS,1,[Whether no ACLs support is available])
1133                 fi
1134                 ;;
1135     esac
1136 fi
1137
1138 if test x"$with_acl_support" = x"yes" ; then
1139    AC_CHECK_HEADERS([acl/libacl.h])
1140     AC_DEFINE(HAVE_ACLS,1,[Whether ACLs support is available])
1141     AC_SUBST(ACL_LIBS)
1142 fi
1143
1144 dnl --------------------- check for Extended Attributes support
1145 neta_cv_eas="ad"
1146 neta_cv_eas_sys_found=no
1147 neta_cv_eas_sys_not_found=no
1148
1149 AC_CHECK_HEADERS(sys/attributes.h attr/xattr.h sys/xattr.h sys/extattr.h sys/uio.h sys/ea.h)
1150
1151 case "$this_os" in
1152
1153   *osf*)
1154         AC_SEARCH_LIBS(getproplist, [proplist])
1155         AC_CHECK_FUNCS([getproplist fgetproplist setproplist fsetproplist],
1156                    [neta_cv_eas_sys_found=yes],
1157                    [neta_cv_eas_sys_not_found=yes])
1158         AC_CHECK_FUNCS([delproplist fdelproplist add_proplist_entry get_proplist_entry],,
1159                    [neta_cv_eas_sys_not_found=yes])
1160         AC_CHECK_FUNCS([sizeof_proplist_entry],,
1161                    [neta_cv_eas_sys_not_found=yes])
1162   ;;
1163
1164   *solaris*)
1165         AC_CHECK_FUNCS([attropen],
1166                    [neta_cv_eas_sys_found=yes],
1167                    [neta_cv_eas_sys_not_found=yes])
1168   ;;
1169
1170   'freebsd')
1171     AC_CHECK_FUNCS([extattr_delete_fd extattr_delete_file extattr_delete_link],
1172                    [neta_cv_eas_sys_found=yes],
1173                    [neta_cv_eas_sys_not_found=yes])
1174     AC_CHECK_FUNCS([extattr_get_fd extattr_get_file extattr_get_link],,
1175                    [neta_cv_eas_sys_not_found=yes])
1176     AC_CHECK_FUNCS([extattr_list_fd extattr_list_file extattr_list_link],,
1177                    [neta_cv_eas_sys_not_found=yes])
1178     AC_CHECK_FUNCS([extattr_set_fd extattr_set_file extattr_set_link],,
1179                    [neta_cv_eas_sys_not_found=yes])
1180   ;;
1181
1182   *freebsd4* | *dragonfly* )
1183     AC_DEFINE(BROKEN_EXTATTR, 1, [Does extattr API work])
1184   ;;
1185
1186   *)
1187         AC_SEARCH_LIBS(getxattr, [attr])
1188
1189     if test "x$neta_cv_eas_sys_found" != "xyes" ; then
1190        AC_CHECK_FUNCS([getxattr lgetxattr fgetxattr listxattr llistxattr],
1191                       [neta_cv_eas_sys_found=yes],
1192                       [neta_cv_eas_sys_not_found=yes])
1193            AC_CHECK_FUNCS([flistxattr removexattr lremovexattr fremovexattr],,
1194                       [neta_cv_eas_sys_not_found=yes])
1195            AC_CHECK_FUNCS([setxattr lsetxattr fsetxattr],,
1196                       [neta_cv_eas_sys_not_found=yes])
1197     fi
1198
1199     if test "x$neta_cv_eas_sys_found" != "xyes" ; then
1200            AC_CHECK_FUNCS([getea fgetea lgetea listea flistea llistea],
1201                       [neta_cv_eas_sys_found=yes],
1202                       [neta_cv_eas_sys_not_found=yes])
1203            AC_CHECK_FUNCS([removeea fremoveea lremoveea setea fsetea lsetea],,
1204                       [neta_cv_eas_sys_not_found=yes])
1205     fi
1206
1207     if test "x$neta_cv_eas_sys_found" != "xyes" ; then
1208            AC_CHECK_FUNCS([attr_get attr_list attr_set attr_remove],,
1209                       [neta_cv_eas_sys_not_found=yes])
1210        AC_CHECK_FUNCS([attr_getf attr_listf attr_setf attr_removef],,
1211                       [neta_cv_eas_sys_not_found=yes])
1212     fi
1213   ;;
1214 esac
1215
1216 # Do xattr functions take additional options like on Darwin?
1217 if test x"$ac_cv_func_getxattr" = x"yes" ; then
1218         AC_CACHE_CHECK([whether xattr interface takes additional options], smb_attr_cv_xattr_add_opt, [
1219                 old_LIBS=$LIBS
1220                 LIBS="$LIBS $ACL_LIBS"
1221                 AC_TRY_COMPILE([
1222                         #include <sys/types.h>
1223                         #if HAVE_ATTR_XATTR_H
1224                         #include <attr/xattr.h>
1225                         #elif HAVE_SYS_XATTR_H
1226                         #include <sys/xattr.h>
1227                         #endif
1228                 ],[
1229                         getxattr(0, 0, 0, 0, 0, 0);
1230                 ],
1231                 [smb_attr_cv_xattr_add_opt=yes],
1232                 [smb_attr_cv_xattr_add_opt=no;LIBS=$old_LIBS])
1233         ])
1234         if test x"$smb_attr_cv_xattr_add_opt" = x"yes"; then
1235                 AC_DEFINE(XATTR_ADD_OPT, 1, [xattr functions have additional options])
1236         fi
1237 fi
1238
1239 if test "x$neta_cv_eas_sys_found" = "xyes" ; then
1240    if test "x$neta_cv_eas_sys_not_found" != "xyes" ; then
1241       neta_cv_eas="$neta_cv_eas | sys"
1242    fi
1243 fi
1244 AC_DEFINE_UNQUOTED(EA_MODULES,["$neta_cv_eas"],[Available Extended Attributes modules])
1245
1246 dnl --------------------- Check if realpath() takes NULL
1247 AC_CACHE_CHECK([if the realpath function allows a NULL argument],
1248     neta_cv_REALPATH_TAKES_NULL, [
1249         AC_TRY_RUN([
1250             #include <stdio.h>
1251             #include <limits.h>
1252             #include <signal.h>
1253
1254             void exit_on_core(int ignored) {
1255                  exit(1);
1256             }
1257
1258             main() {
1259                 char *newpath;
1260                 signal(SIGSEGV, exit_on_core);
1261                 newpath = realpath("/tmp", NULL);
1262                 exit((newpath != NULL) ? 0 : 1);
1263             }],
1264             neta_cv_REALPATH_TAKES_NULL=yes,
1265             neta_cv_REALPATH_TAKES_NULL=no,
1266             neta_cv_REALPATH_TAKES_NULL=cross
1267         )
1268     ]
1269 )
1270
1271 if test x"$neta_cv_REALPATH_TAKES_NULL" = x"yes"; then
1272     AC_DEFINE(REALPATH_TAKES_NULL,1,[Whether the realpath function allows NULL])
1273 fi
1274
1275 dnl --------------------- Netatalk Webmin
1276 NETATALK_WEBMIN
1277
1278 dnl --------------------- last minute substitutions
1279
1280 AC_SUBST(LIBS)
1281 AC_SUBST(CFLAGS)
1282 AC_SUBST(OVERWRITE_CONFIG)
1283
1284 AM_CONDITIONAL(SOLARIS_MODULE, test x$solaris_module = xyes)
1285 AM_CONDITIONAL(COMPILE_TIMELORD, test x$compile_timelord = xyes)
1286 AM_CONDITIONAL(COMPILE_A2BOOT, test x$compile_a2boot = xyes)
1287 AM_CONDITIONAL(HAVE_LIBGCRYPT, test x$neta_cv_have_libgcrypt = xyes)
1288 AM_CONDITIONAL(HAVE_OPENSSL, test x$neta_cv_have_openssl = xyes)
1289 AM_CONDITIONAL(HAVE_ACLS, test x"$with_acl_support" = x"yes")
1290 AM_CONDITIONAL(HAVE_LDAP, test x"$with_ldap" = x"yes")
1291 AM_CONDITIONAL(USE_DHX, test x$neta_cv_compile_dhx = xyes)
1292 AM_CONDITIONAL(USE_DHX2, test x$neta_cv_compile_dhx2 = xyes)
1293 AM_CONDITIONAL(USE_RANDNUM, test x$neta_cv_have_openssl = xyes)
1294 AM_CONDITIONAL(USE_KERBEROS, test x$compile_kerberos = xyes)
1295 AM_CONDITIONAL(USE_PAM_SO, test x$use_pam_so = xyes)
1296 AM_CONDITIONAL(USE_PAM, test x$netatalk_cv_install_pam = xyes)
1297 AM_CONDITIONAL(BUILD_PAM, test x$compile_pam = xyes)
1298 AM_CONDITIONAL(USE_PGP, test x$compile_pgp = xyes)
1299 AM_CONDITIONAL(DEFAULT_HOOK, test x$neta_cv_have_libgcrypt != xyes && test x$neta_cv_have_openssl != xyes)
1300 AM_CONDITIONAL(USE_NETBSD, test x$sysv_style = xnetbsd)
1301 AM_CONDITIONAL(USE_REDHAT_SYSV, test x$sysv_style = xredhat-sysv)
1302 AM_CONDITIONAL(USE_SUSE_SYSV, test x$sysv_style = xsuse-sysv)
1303 AM_CONDITIONAL(USE_SHADOWPW, test x$shadowpw = xyes)
1304 AM_CONDITIONAL(USE_TRU64, test x$sysv_style = xtru64)
1305 AM_CONDITIONAL(USE_SOLARIS, test x$sysv_style = xsolaris)
1306 AM_CONDITIONAL(USE_GENTOO, test x$sysv_style = xgentoo)
1307 AM_CONDITIONAL(USE_DEBIAN, test x$sysv_style = xdebian)
1308 AM_CONDITIONAL(USE_SYSTEMD, test x$sysv_style = xsystemd || test x$sysv_style = xredhat-systemd || test x$sysv_style = xsuse-systemd)
1309 AM_CONDITIONAL(USE_UNDEF, test x$sysv_style = x)
1310 AM_CONDITIONAL(USE_BDB, test x$bdb_required = xyes)
1311 AM_CONDITIONAL(USE_APPLETALK, test x$netatalk_cv_ddp_enabled = xyes)
1312 AM_CONDITIONAL(HAVE_ATFUNCS, test x"$ac_neta_haveatfuncs" = x"yes")
1313
1314 dnl --------------------- generate files
1315
1316 AC_OUTPUT([Makefile
1317         bin/Makefile
1318         bin/ad/Makefile
1319         bin/adv1tov2/Makefile
1320         bin/aecho/Makefile
1321         bin/afppasswd/Makefile
1322         bin/cnid/Makefile
1323         bin/cnid/cnid2_create
1324         bin/getzones/Makefile
1325         bin/megatron/Makefile
1326         bin/misc/Makefile
1327         bin/nbp/Makefile
1328         bin/pap/Makefile
1329         bin/psorder/Makefile
1330         bin/uniconv/Makefile
1331         config/Makefile
1332         config/pam/Makefile
1333         contrib/Makefile
1334         contrib/macusers/Makefile
1335         contrib/macusers/macusers
1336         contrib/misc/Makefile
1337         contrib/printing/Makefile
1338         contrib/shell_utils/Makefile
1339         contrib/shell_utils/apple_dump
1340         contrib/shell_utils/asip-status.pl
1341         contrib/timelord/Makefile
1342         contrib/a2boot/Makefile
1343         distrib/Makefile
1344         distrib/config/Makefile
1345         distrib/config/netatalk-config
1346         distrib/initscripts/Makefile
1347         distrib/m4/Makefile
1348         distrib/systemd/Makefile
1349         doc/Makefile
1350         etc/Makefile
1351         etc/afpd/Makefile
1352         etc/atalkd/Makefile
1353         etc/cnid_dbd/Makefile
1354         etc/uams/Makefile
1355         etc/uams/uams_krb4/Makefile
1356         etc/papd/Makefile
1357         etc/psf/Makefile
1358         include/Makefile
1359         include/atalk/Makefile
1360         libatalk/Makefile
1361         libatalk/acl/Makefile
1362         libatalk/adouble/Makefile
1363         libatalk/asp/Makefile
1364         libatalk/atp/Makefile
1365         libatalk/bstring/Makefile
1366         libatalk/cnid/Makefile
1367         libatalk/cnid/cdb/Makefile
1368         libatalk/cnid/last/Makefile
1369         libatalk/cnid/dbd/Makefile
1370         libatalk/cnid/tdb/Makefile
1371         libatalk/compat/Makefile
1372         libatalk/dsi/Makefile
1373         libatalk/nbp/Makefile
1374         libatalk/netddp/Makefile
1375         libatalk/util/Makefile
1376         libatalk/tdb/Makefile
1377         libatalk/unicode/Makefile
1378         libatalk/unicode/charsets/Makefile
1379         libatalk/vfs/Makefile
1380         macros/Makefile
1381         man/Makefile
1382         man/man1/Makefile
1383         man/man3/Makefile
1384         man/man4/Makefile
1385         man/man5/Makefile
1386         man/man8/Makefile
1387         sys/Makefile
1388         sys/generic/Makefile
1389         sys/generic/sys/Makefile
1390         sys/netatalk/Makefile
1391         sys/netbsd/Makefile
1392         sys/netbsd/netatalk/Makefile
1393         sys/solaris/Makefile
1394         sys/sunos/Makefile
1395         sys/ultrix/Makefile
1396         test/Makefile
1397         test/afpd/Makefile
1398         ],
1399         [chmod a+x distrib/config/netatalk-config contrib/shell_utils/apple_*]
1400 )
1401
1402 AC_NETATALK_LIBS_SUMMARY
1403 AC_NETATALK_CONFIG_SUMMARY