diff options
-rw-r--r-- | archivers/dar/Makefile | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/archivers/dar/Makefile b/archivers/dar/Makefile index 0664c2c88cd..6f44574cb11 100644 --- a/archivers/dar/Makefile +++ b/archivers/dar/Makefile @@ -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 |