Add support for dar-int32 and dar-int64 package options.
Dar is built by default with an arbitrary-size-integer library for managing all file length/timestamp details. If 32-bit or 64-bit integers (with overflow protection) are sufficient for requirements, the dar-int32 and dar-int64 options can significantly reduce the run-time memory and CPU overheads of Dar. Leave the default unchanged (thus no package version bump).
This commit is contained in:
parent
f5eca11daa
commit
168d676dea
1 changed files with 18 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.21 2006/05/26 10:10:08 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.22 2006/07/08 07:09:34 dsainty Exp $
|
||||
|
||||
DISTNAME= dar-2.3.0
|
||||
CATEGORIES= archivers sysutils
|
||||
|
@ -20,6 +20,23 @@ CONFIGURE_ARGS+= --disable-nodump-flag
|
|||
CONFIGURE_ARGS+= --disable-upx
|
||||
CONFIGURE_ARGS+= --enable-examples
|
||||
|
||||
PKG_OPTIONS_VAR= PKG_OPTIONS.dar
|
||||
PKG_SUPPORTED_OPTIONS= dar-int32 dar-int64
|
||||
PKG_SUGGESTED_OPTIONS=
|
||||
|
||||
.include "../../mk/bsd.options.mk"
|
||||
|
||||
# Dar is built by default with an arbitrary-size-integer library for
|
||||
# managing all file length/timestamp details. If 32-bit or 64-bit
|
||||
# integers (with overflow protection) are sufficient for requirements,
|
||||
# the following options can significantly reduce the run-time memory
|
||||
# and CPU overheads of Dar.
|
||||
.if !empty(PKG_OPTIONS:Mdar-int64)
|
||||
CONFIGURE_ARGS+= --enable-mode=64
|
||||
.elif !empty(PKG_OPTIONS:Mdar-int32)
|
||||
CONFIGURE_ARGS+= --enable-mode=32
|
||||
.endif
|
||||
|
||||
PKGCONFIG_OVERRIDE= src/libdar/libdar.pc.tmpl.in
|
||||
UNLIMIT_RESOURCES= datasize
|
||||
|
||||
|
|
Loading…
Reference in a new issue