]> arthur.barton.de Git - netatalk.git/commitdiff
Add -lpam to AFPD_LIBS and PAPD_LIBS. afpd and papd need to be linked
authorjmarcus <jmarcus>
Thu, 11 Oct 2001 19:10:15 +0000 (19:10 +0000)
committerjmarcus <jmarcus>
Thu, 11 Oct 2001 19:10:15 +0000 (19:10 +0000)
against PAM if the UAMS are going to work.

ChangeLog
configure.in

index 3c620da3db6e4fd780eb759b0397bd734a49dd22..7ac6afd367d39fea6993624e8bfb93103573b94a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
 
+2001-10-11  joe  c  <marcus@marcuscom.com>
+
+       * configure.in: More PAM fixes
+
 2001-10-10  joe  c  <marcus@marcuscom.com>
 
        * configure.in: More PAM fixes
index fb785e9a83373dccacb47fc4d8b992bc53aed53a..d78c17ceaaaa7e72a6e7164d0d8955fdffef09c5 100644 (file)
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.113 2001-10-10 20:19:18 jmarcus Exp $
+dnl $Id: configure.in,v 1.114 2001-10-11 19:10:15 jmarcus Exp $
 dnl configure.in for netatalk
 
 AC_INIT(bin/adv1tov2/adv1tov2.c)
@@ -353,7 +353,7 @@ if test "x$PAM_MSG" = "xyes"; then
        if test "x$ac_cv_header_security_pam_appl_h" = "xyes" ; then
         
                AC_CHECK_LIB(pam, pam_set_item, 
-                               [use_pam_so=yes; compile_pam=yes; AC_DEFINE(USE_PAM)],
+                               [PAPD_LIBS="$PAPD_LIBS -lpam"; AFPD_LIBS="$AFPD_LIBS -lpam"; use_pam_so=yes; compile_pam=yes; AC_DEFINE(USE_PAM)],
                        [use_pam_so=no; compile_pam=no]
                )
        fi