13 lines
322 B
Makefile
13 lines
322 B
Makefile
# $NetBSD: options.mk,v 1.2 2019/08/30 17:48:07 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.aranym
|
|
PKG_SUPPORTED_OPTIONS= opengl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mopengl)
|
|
CONFIGURE_ARGS+= --enable-opengl
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-opengl
|
|
.endif
|