blob: 63b8431f632d39f3def70fecb5e70c9812cabe6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.2 2008/01/27 16:10:25 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.eterm
.include "../../mk/bsd.prefs.mk"
PKG_SUPPORTED_OPTIONS= # none
.if ${MACHINE_ARCH} == "i386"
PKG_SUPPORTED_OPTIONS+= mmx
.endif
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mmmx)
CONFIGURE_ARGS+= --enable-mmx
.endif
|