]> arthur.barton.de Git - netatalk.git/blob - macros/summary.m4
better handling of bogus ppd files
[netatalk.git] / macros / summary.m4
1 dnl $Id: summary.m4,v 1.1.2.5.2.2 2008-12-02 03:11:59 didg Exp $
2 dnl Autoconf macros, display configure summary
3
4 AC_DEFUN([AC_NETATALK_CONFIG_SUMMARY], [
5
6         AC_MSG_RESULT([Configure summary:])
7         AC_MSG_RESULT([    Install style:])
8         if test "x$sysv_style" != "x"; then
9                 AC_MSG_RESULT([         $sysv_style])
10         else
11                 AC_MSG_RESULT([         none])
12         fi
13         AC_MSG_RESULT([    AFP:])
14         AC_MSG_RESULT([         AFP 3.x calls activated: $afp3])
15         if test "x$afp3" = "xyes"; then
16                 AC_MSG_RESULT([         Large file support (>2GB) for AFP3: $wx_largefile])
17         fi
18         AC_MSG_RESULT([         DDP enabled: $netatalk_cv_ddp_enabled])
19         AC_MSG_RESULT([    CNID:])
20         AC_MSG_RESULT([         backends: $compiled_backends])
21         AC_MSG_RESULT([    UAMS:])
22         uams_using_options=""
23         if test x"$netatalk_cv_use_pam" != x"no"; then
24                 uams_using_options="PAM"
25         fi
26         if test "x$netatalk_cv_use_shadowpw" = "xyes"; then
27                 uams_using_options="$uams_using_options SHADOW"
28         fi
29         if test "x$neta_cv_compile_dhx" = "xyes"; then
30                 AC_MSG_RESULT([         DHX     ($uams_using_options)])
31         fi
32         if test "x$neta_cv_compile_dhx2" = "xyes"; then
33                 AC_MSG_RESULT([         DHX2    ($uams_using_options)])
34         fi
35         if test "x$neta_cv_have_openssl" = "xyes"; then
36                 AC_MSG_RESULT([         RANDNUM ($uams_using_options)])
37         fi
38         if test x"$netatalk_cv_build_krb5_uam" = x"yes"; then
39                 AC_MSG_RESULT([         Kerberos V])
40         fi
41         if test x"$compile_kerberos" = x"yes"; then
42                 AC_MSG_RESULT([         Kerberos IV])
43         fi
44         if test x"$compile_pgp" = x"yes"; then
45                 AC_MSG_RESULT([         PGP])
46         fi
47         AC_MSG_RESULT([         passwd  ($uams_using_options)])
48         AC_MSG_RESULT([         guest])
49         AC_MSG_RESULT([    Options:])
50         AC_MSG_RESULT([         CUPS support:           $netatalk_cv_use_cups])
51         AC_MSG_RESULT([         SLP support:            $netatalk_cv_srvloc])
52         AC_MSG_RESULT([         tcp wrapper support:    $netatalk_cv_tcpwrap])
53 dnl     if test x"$netatalk_cv_linux_sendfile" != x; then
54 dnl             AC_MSG_RESULT([         Linux sendfile support: $netatalk_cv_linux_sendfile])
55 dnl     fi
56         AC_MSG_RESULT([         quota support:          $netatalk_cv_quotasupport])
57         AC_MSG_RESULT([         admin group support:    $netatalk_cv_admin_group])
58         AC_MSG_RESULT([         valid shell check:      $netatalk_cv_use_shellcheck])
59         AC_MSG_RESULT([         cracklib support:       $netatalk_cv_with_cracklib])
60         AC_MSG_RESULT([         dropbox kludge:         $netatalk_cv_dropkludge])
61         AC_MSG_RESULT([         force volume uid/gid:   $netatalk_cv_force_uidgid])
62         AC_MSG_RESULT([         Apple 2 boot support:   $compile_a2boot])
63         if test x"$use_pam_so" = x"yes" -a x"$netatalk_cv_install_pam" = x"no"; then
64                 AC_MSG_RESULT([])
65                 AC_MSG_WARN([ PAM support was configured for your system, but the netatalk PAM configuration file])
66                 AC_MSG_WARN([ cannot be installed. Please install the config/netatalk.pamd file manually.])
67                 AC_MSG_WARN([ If you're running Solaris or BSD you'll have to edit /etc/pam.conf to get PAM working.])
68                 AC_MSG_WARN([ You can also re-run configure and specify --without-pam to disable PAM support.])
69         fi
70
71 ])
72
73
74 AC_DEFUN([AC_NETATALK_LIBS_SUMMARY], [
75         dnl #################################################
76         dnl # Display summary of libraries detected
77
78         AC_MSG_RESULT([Using libraries:])
79         AC_MSG_RESULT([    LIBS = $LIBS])
80         AC_MSG_RESULT([    CFLAGS = $CFLAGS])
81         if test x"$neta_cv_have_openssl" = x"yes"; then
82                 AC_MSG_RESULT([    SSL:])
83                 AC_MSG_RESULT([        LIBS   = $SSL_LIBS])
84                 AC_MSG_RESULT([        CFLAGS = $SSL_CFLAGS])
85         fi
86         if test x"$neta_cv_have_libgcrypt" = x"yes"; then
87                 AC_MSG_RESULT([    LIBGCRYPT:])
88                 AC_MSG_RESULT([        LIBS   = $LIBGCRYPT_LIBS])
89                 AC_MSG_RESULT([        CFLAGS = $LIBGCRYPT_CFLAGS])
90         fi
91         if test x"$netatalk_cv_use_pam" = x"yes"; then
92                 AC_MSG_RESULT([    PAM:])
93                 AC_MSG_RESULT([        LIBS   = $PAM_LIBS])
94                 AC_MSG_RESULT([        CFLAGS = $PAM_CFLAGS])
95         fi
96         if test x"$netatalk_cv_use_pam" = x"yes"; then
97                 AC_MSG_RESULT([    WRAP:])
98                 AC_MSG_RESULT([        LIBS   = $WRAP_LIBS])
99                 AC_MSG_RESULT([        CFLAGS = $WRAP_CFLAGS])
100         fi
101         if test x"$bdb_required" = x"yes"; then
102                 AC_MSG_RESULT([    BDB:])
103                 AC_MSG_RESULT([        LIBS   = $BDB_LIBS])
104                 AC_MSG_RESULT([        CFLAGS = $BDB_CFLAGS])
105         fi
106         if test x"$netatalk_cv_build_krb5_uam" = x"yes"; then
107                 AC_MSG_RESULT([    GSSAPI:])
108                 AC_MSG_RESULT([        LIBS   = $GSSAPI_LIBS])
109                 AC_MSG_RESULT([        CFLAGS = $GSSAPI_CFLAGS])
110         fi
111         if test x"$netatalk_cv_srvloc" = x"yes"; then
112                 AC_MSG_RESULT([    SRVLOC:])
113                 AC_MSG_RESULT([        LIBS   = $SLP_LIBS])
114                 AC_MSG_RESULT([        CFLAGS = $SLP_CFLAGS])
115         fi
116         if test x"$netatalk_cv_use_cups" = x"yes"; then
117                 AC_MSG_RESULT([    CUPS:])
118                 AC_MSG_RESULT([        LIBS   = $CUPS_LIBS])
119                 AC_MSG_RESULT([        CFLAGS = $CUPS_CFLAGS])
120         fi
121 ])