blob: 8d0c0430cf2f6cee3fcaf2ca029391c872ed5b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.3 2016/07/09 13:03:38 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gdb
PKG_SUPPORTED_OPTIONS= python
PKG_SUGGESTED_OPTIONS= python
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mpython)
CONFIGURE_ARGS+= --with-python=${PYTHONBIN}
PYTHON_VERSIONS_INCOMPATIBLE= 34 35
.include "../../lang/python/application.mk"
.endif
|