601583c320
Patch provided by Sergey Svishchev in private mail.
17 lines
383 B
Makefile
17 lines
383 B
Makefile
# $NetBSD: options.mk,v 1.2 2007/02/22 19:27:01 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.inn
|
|
PKG_SUPPORTED_OPTIONS= python
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Python support for INN
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mpython)
|
|
CONFIGURE_ARGS+= --with-python
|
|
CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN:Q}
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.endif
|