blob: 3a7994176b5a9740f0fd0967664b226e87755988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.2 2011/04/08 11:34:44 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fd
PKG_SUPPORTED_OPTIONS= fd-small
.include "../../mk/bsd.options.mk"
PLIST_VARS+= fd-full
.if !empty(PKG_OPTIONS:Mfd-small)
MAKE_FLAGS+= VERSION=1
FD_CONFIG= fdrc
.else
FD_CONFIG= fd2rc
PLIST.fd-full= yes
.endif
|