diff options
author | taca <taca@pkgsrc.org> | 2005-06-05 23:40:56 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2005-06-05 23:40:56 +0000 |
commit | 799e93181ff8a64a99b4f3b28f00dc789618d1c6 (patch) | |
tree | 869e696613355c42a4775ca02b898660fdd7711f /net/netatalk1/options.mk | |
parent | 9b83e9af12349c84e2f8b822df096e5d98ed2198 (diff) | |
download | pkgsrc-799e93181ff8a64a99b4f3b28f00dc789618d1c6.tar.gz |
Update netatalk1 package to 1.6.4a.
pkgsrc change
- Take matainer ship by me.
- Introduce options.mk for PAM configure option.
- Minor clean up of Makefile.
- Added quick changes to avoid using <openssl/des.h>.
netatalk changes
Changes in 1.6.4a
=================
* FIX: insecure tempfile handling bug in etc2ps.sh, found by Trustix, CAN-2004-0974.
Changes in 1.6.4
================
* NEW: afpd: Using the mswindows option now implicitly specifies usedots.
[Sam Noble]
* UPD: afpd.8: Updated the option documentation.
[Thomas Kaiser, Sebastian Rittau]
* FIX: configure: Removed broken --with-flock-locks option. [Bj\M-C\M-6rn Fernhomberg]
* FIX: libatalk: Do not log network probe (OSX 10.3). [Didier Gautheron]
* FIX: libatalk: Deadlock in signal handlers. [Didier]
* FIX: libatalk: Compilation with Linux kernel 2.6 fixed. [Sebastian, Bj\M-C\M-6rn]
* FIX: afpd: Solaris compile issues. [Bj\M-C\M-6rn]
* FIX: afpd: If connection broke in dsi_tickle the child did never die. [Bj\M-C\M-6rn]
* FIX: afpd: Catsearch, fixes a possible segmentation fault. [Bj\M-C\M-6rn]
* FIX: afpd: Compilation issues. [Olaf Hering, Sebastian]
* FIX: cnid: Fix compile problems on Tru64. [Burkhard Schmidt]
* FIX: megatron: Fixed an uninitialized variable. [Olaf]
* FIX: installation: Don't overwrite PAM file if --enable-overwrite configure
option is not set. [Sam, Ryan Cleary]
* FIX: installation: Fixed BSD installation. [Toru TAKAMIZU]
* FIX: docs: Removed ssl-dir/ssl-dirs confusion from doc/INSTALL. [Bj\M-C\M-6rn]
Changes in 1.6.3
================
* UPD: afpd: Infrastructural support for an upcoming Kerberos 5 UAM.
[Sam Noble]
* UPD: uams_dhx_passwd: Better random seed in Tru64. [Burkhard Schmidt]
* FIX: afpd: Bug in AFP connection negotiation stage. [Sam]
* FIX: afpd: Catsearch, when Mac and unix name differ, search on attributes.
* FIX: afpd: Files could be opened for writing on read-only filesystems.
* FIX: afpd: Debugging using SIGUSR1 was broken. [Stefan Muenkner]
* FIX: afpd: Segfault after login. [Robby Griffin, Sean Bolton]
* FIX: psf: Correct path to etc2ps.sh.
* FIX: shell_utils: Don't distribute generated files.
* FIX: aecho: -A option didn't work. [Chris Shiels]
* FIX: configure: Berkeley DB path detection could be wrong. [Stefan]
* FIX: Automake build fixes.
Diffstat (limited to 'net/netatalk1/options.mk')
-rw-r--r-- | net/netatalk1/options.mk | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/netatalk1/options.mk b/net/netatalk1/options.mk new file mode 100644 index 00000000000..3924a571dda --- /dev/null +++ b/net/netatalk1/options.mk @@ -0,0 +1,17 @@ +# $NetBSD: options.mk,v 1.1 2005/06/05 23:40:56 taca Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.netatalk1 +PKG_SUPPORTED_OPTIONS= pam +.include "../../mk/bsd.options.mk" + +### +### Support PAM authentication and build smbpass and winbind PAM modules. +### +.if !empty(PKG_OPTIONS:Mpam) +. include "../../security/PAM/module.mk" +CONFIGURE_ARGS+= --with-pam +PLIST_SUBST+= PAM= +.else +CONFIGURE_ARGS+= --without-pam +PLIST_SUBST+= PAM="@comment " +.endif |