blob: b954d5b44e3c364cfa840bec5805962ef755f236 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: options.mk,v 1.3 2006/01/07 10:27:51 hubertf Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.spamprobe
PKG_SUPPORTED_OPTIONS= bdb gif
PKG_SUGGESTED_OPTIONS= gif
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mbdb)
BDB_ACCEPTED= db4 # db3 db2 (not tested)
.include "../../mk/bdb.buildlink3.mk"
CONFIGURE_ARGS+= --with-db=${BDBBASE:Q}
.endif
.if !empty(PKG_OPTIONS:Mgif)
.include "../../graphics/libungif/buildlink3.mk"
.endif
|