blob: a8a22fb9e11ec63c213eac1d021b7d662d9b8318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: options.mk,v 1.4 2016/02/04 11:50:24 leot Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mupdf
PKG_SUPPORTED_OPTIONS= curl glfw
.include "../../mk/bsd.options.mk"
PLIST_VARS+= glfw
#
# curl support
#
.if !empty(PKG_OPTIONS:Mcurl)
.include "../../www/curl/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.endif
#
# glfw support
#
.if !empty(PKG_OPTIONS:Mglfw)
PLIST.glfw= yes
.include "../../graphics/glut/buildlink3.mk"
.include "../../graphics/glfw/buildlink3.mk"
.endif
|