blob: 8acf3d9b5c9a6b43b0a1de89b168c4c7deee41dd (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $NetBSD: options.mk,v 1.4 2012/10/17 23:27:34 asau Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.openmpi
PKG_SUPPORTED_OPTIONS= debug
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
|