pkgsrc/net/openafs/options.mk
gendalia a9fb92f278 Updated OpenAFS to 1.4.5. conditionalized several of the options.
Fixed a couple of files, in theory should work on NetBSD 3.x & 4.x, and
i386 & amd64 now.

OpenAFS Release Notes - Version 1.4.5
_________________________________________________________________
All systems:
- fileserver address tracking is improved to avoid potentially merging
  unrelated hosts.
- Documentation updates.
- namei fileserver now does fsync()s in background batches for performance
  improvements.
- Kerberos ticket support corrected in bundled Kerberos 4 utilities on 64
  bit platforms.
- fileserver includes limited per-host thread quota support to avoid
  resource starvation.
- fileserver deals with more types of damaged volumes without asserting.
- vos validates dumpfiles before attempting restores.
- vos clone will no longer potentially delete the parent volume.
- Client no longer permits empty UUID to be created.
- fs uuid command for checking, regenerating UUID added.
- Updates for gcc 4.2.
- fileserver treats w (write) permission as granting read lock permission
  in addition to write.
2007-10-27 09:11:10 +00:00

45 lines
1.4 KiB
Makefile

# $NetBSD: options.mk,v 1.1 2007/10/27 09:11:10 gendalia Exp $
.include "../../mk/bsd.prefs.mk"
PKG_OPTIONS_VAR= PKG_OPTIONS.openafs
PKG_SUPPORTED_OPTIONS+= server bitmap-later bos-new-config fast-restart
PKG_SUPPORTED_OPTIONS+= largefile kernel-module supergroups namei
.if ${MACHINE_ARCH} != "x86_64"
PKG_SUPPORTED_OPTIONS+= pam
.endif
PKG_SUGGESTED_OPTIONS= server bitmap-later bos-new-config fast-restart
PKG_SUGGESTED_OPTIONS+= namei largefile -kernel-module supergroups
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msupergroups)
CONFIGURE_ARGS+= --enable-supergroups
.endif
.if !empty(PKG_OPTIONS:Mbitmap-later)
CONFIGURE_ARGS+= --enable-bitmap-later
.endif
.if !empty(PKG_OPTIONS:Mbos-new-config)
CONFIGURE_ARGS+= --enable-bos-new-config
.endif
.if !empty(PKG_OPTIONS:Mfast-restart)
CONFIGURE_ARGS+= --enable-fast-restart
.endif
.if !empty(PKG_OPTIONS:Mlargefile)
CONFIGURE_ARGS+= --enable-largefile-fileserver
.endif
.if !empty(PKG_OPTIONS:Mkernel-module)
CONFIGURE_ARGS+= --enable-kernel-module
.else
CONFIGURE_ARGS+= --disable-kernel-module
.endif
.if !empty(PKG_OPTIONS:Mnamei)
CONFIGURE_ARGS+= --enable-namei-fileserver
.endif
.if !empty(PKG_OPTIONS:Mpam)
CONFIGURE_ARGS+= --enable-pam
.include "../../mk/pam.buildlink3.mk"
PLIST_SRC+= ${.CURDIR}/PLIST.pam
.else
CONFIGURE_ARGS+= --disable-pam
.endif