summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-01-10 23:10:39 +0000
committerMike Frysinger <vapier@gentoo.org>2010-01-10 23:10:39 +0000
commitcb0ba8a43306c4293b6af743f4e0f9a7c822f32a (patch)
tree363b9c7291f11d871a8c60d29df1d9ce044a9cea /net-fs/netatalk/files
parentbackport RTLD_NOLOAD support from 8.0; code part (diff)
downloadgentoo-2-cb0ba8a43306c4293b6af743f4e0f9a7c822f32a.tar.gz
gentoo-2-cb0ba8a43306c4293b6af743f4e0f9a7c822f32a.tar.bz2
gentoo-2-cb0ba8a43306c4293b6af743f4e0f9a7c822f32a.zip
Version bump #279057 and block app-text/yudit #247972.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'net-fs/netatalk/files')
-rw-r--r--net-fs/netatalk/files/netatalk-2.0.5-control-pam.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/net-fs/netatalk/files/netatalk-2.0.5-control-pam.patch b/net-fs/netatalk/files/netatalk-2.0.5-control-pam.patch
new file mode 100644
index 000000000000..4c069dcab258
--- /dev/null
+++ b/net-fs/netatalk/files/netatalk-2.0.5-control-pam.patch
@@ -0,0 +1,23 @@
+don't install the pam.d file if pam is disabled
+
+--- a/configure
++++ b/configure
+@@ -28572,12 +28572,16 @@
+ LIBS="$savedLIBS"
+ fi
+
+- netatalk_cv_install_pam=yes
+- if test x"$pam_found" = "xyes" -a "x$PAMDIR" = "xNONE"; then
++ if test "x$require_pam" != "xnever"; then
++ netatalk_cv_install_pam=yes
++ if test x"$pam_found" = "xyes" -a "x$PAMDIR" = "xNONE" ; then
+ { echo "$as_me:$LINENO: WARNING: PAM support can be compiled, but the install location for the netatalk.pamd file could not be determined. Either install this file by hand or specify the install path." >&5
+ echo "$as_me: WARNING: PAM support can be compiled, but the install location for the netatalk.pamd file could not be determined. Either install this file by hand or specify the install path." >&2;}
+ netatalk_cv_install_pam=no
+ fi
++ else
++ netatalk_cv_install_pam=no
++ fi
+
+ { echo "$as_me:$LINENO: checking whether to enable PAM support" >&5
+ echo $ECHO_N "checking whether to enable PAM support... $ECHO_C" >&6; }