Mon Apr 29 03:28:40 2019 UTC ()
Remove BROKEN attached to the yajl option.

It says "The yajl option requires a yajl.pc file which that package
doesn't have." but yajl.pc has existed for several years now.


(dholland)
diff -r1.6 -r1.7 pkgsrc/www/py-uwsgi/options.mk

cvs diff -r1.6 -r1.7 pkgsrc/www/py-uwsgi/options.mk (expand / switch to unified diff)

--- pkgsrc/www/py-uwsgi/options.mk 2019/04/27 15:40:44 1.6
+++ pkgsrc/www/py-uwsgi/options.mk 2019/04/29 03:28:39 1.7
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: options.mk,v 1.6 2019/04/27 15:40:44 roy Exp $ 1# $NetBSD: options.mk,v 1.7 2019/04/29 03:28:39 dholland Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.py-uwsgi 3PKG_OPTIONS_VAR= PKG_OPTIONS.py-uwsgi
4PKG_SUPPORTED_OPTIONS= debug openssl pcre uuid uwsgi-sse_offload yaml 4PKG_SUPPORTED_OPTIONS= debug openssl pcre uuid uwsgi-sse_offload yaml
5PKG_SUGGESTED_OPTIONS+= libxml2 openssl pcre 5PKG_SUGGESTED_OPTIONS+= libxml2 openssl pcre
6 6
7PKG_OPTIONS_OPTIONAL_GROUPS+= json xml 7PKG_OPTIONS_OPTIONAL_GROUPS+= json xml
8PKG_OPTIONS_GROUP.json= jansson yajl 8PKG_OPTIONS_GROUP.json= jansson yajl
9PKG_OPTIONS_GROUP.xml= expat libxml2 9PKG_OPTIONS_GROUP.xml= expat libxml2
10 10
11.include "../../mk/bsd.options.mk" 11.include "../../mk/bsd.options.mk"
12 12
13UWSGI_DEBUG= debug=false 13UWSGI_DEBUG= debug=false
14.if !empty(PKG_OPTIONS:Mdebug) 14.if !empty(PKG_OPTIONS:Mdebug)
@@ -21,27 +21,26 @@ UWSGI_XML= xml=expat @@ -21,27 +21,26 @@ UWSGI_XML= xml=expat
21.elif !empty(PKG_OPTIONS:Mlibxml2) 21.elif !empty(PKG_OPTIONS:Mlibxml2)
22.include "../../textproc/libxml2/buildlink3.mk" 22.include "../../textproc/libxml2/buildlink3.mk"
23UWSGI_XML= xml=libxml2 23UWSGI_XML= xml=libxml2
24.else 24.else
25UWSGI_XML= xml=false 25UWSGI_XML= xml=false
26.endif 26.endif
27 27
28.if !empty(PKG_OPTIONS:Mjansson) 28.if !empty(PKG_OPTIONS:Mjansson)
29.include "../../textproc/jansson/buildlink3.mk" 29.include "../../textproc/jansson/buildlink3.mk"
30UWSGI_JSON= json=jansson 30UWSGI_JSON= json=jansson
31.elif !empty(PKG_OPTIONS:Myajl) 31.elif !empty(PKG_OPTIONS:Myajl)
32.include "../../devel/yajl/buildlink3.mk" 32.include "../../devel/yajl/buildlink3.mk"
33UWSGI_JSON= json=yajl 33UWSGI_JSON= json=yajl
34BROKEN= The yajl option requires a yajl.pc file which that package doesn't have. 
35.else 34.else
36UWSGI_JSON= json=false 35UWSGI_JSON= json=false
37.endif 36.endif
38 37
39.if !empty(PKG_OPTIONS:Mopenssl) 38.if !empty(PKG_OPTIONS:Mopenssl)
40.include "../../security/openssl/buildlink3.mk" 39.include "../../security/openssl/buildlink3.mk"
41UWSGI_SSL= ssl=true 40UWSGI_SSL= ssl=true
42.else 41.else
43UWSGI_SSL= ssl=false 42UWSGI_SSL= ssl=false
44.endif 43.endif
45 44
46.if !empty(PKG_OPTIONS:Mpcre) 45.if !empty(PKG_OPTIONS:Mpcre)
47.include "../../devel/pcre/buildlink3.mk" 46.include "../../devel/pcre/buildlink3.mk"