mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
42 lines
872 B
Makefile
42 lines
872 B
Makefile
# $NetBSD: options.mk,v 1.9 2013/05/16 05:38:31 richard Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.modular-xorg-server
|
|
PKG_SUPPORTED_OPTIONS= dri inet6 debug dtrace
|
|
PKG_SUGGESTED_OPTIONS= dri inet6
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= dri dtrace
|
|
|
|
.if !empty(PKG_OPTIONS:Mdri)
|
|
PLIST.dri= yes
|
|
CONFIGURE_ARGS+= --enable-dri
|
|
CONFIGURE_ARGS+= --enable-glx
|
|
CONFIGURE_ARGS+= --enable-aiglx
|
|
.else
|
|
###
|
|
### XXX Perhaps we should allow for a built-in glx without dri enabled?
|
|
###
|
|
CONFIGURE_ARGS+= --disable-dri
|
|
CONFIGURE_ARGS+= --disable-glx
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
CFLAGS+= -ggdb
|
|
.endif
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Mdtrace)
|
|
PLIST.dtrace= yes
|
|
CONFIGURE_ARGS+= --with-dtrace
|
|
.else
|
|
CONFIGURE_ARGS+= --without-dtrace
|
|
.endif
|