mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
20 lines
402 B
Makefile
Executable File
20 lines
402 B
Makefile
Executable File
# $NetBSD: options.mk,v 1.1 2012/06/07 21:35:37 ryoon Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.qemu
|
|
PKG_SUPPORTED_OPTIONS= sdl
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.if empty(OPSYS:MDarwin)
|
|
PKG_SUGGESTED_OPTIONS= sdl
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Msdl)
|
|
CONFIGURE_ARGS+= --enable-sdl
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-sdl
|
|
.endif
|