79835b4238
Patch from Christian Gall.
16 lines
393 B
Makefile
16 lines
393 B
Makefile
# $NetBSD: options.mk,v 1.1 2006/07/18 06:37:50 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.amarok
|
|
PKG_SUPPORTED_OPTIONS= mysql pgsql
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mmysql)
|
|
CONFIGURE_ARGS+= --enable-mysql
|
|
.include "../../mk/mysql.buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpgsql)
|
|
CONFIGURE_ARGS+= --enable-postgresql
|
|
.include "../../mk/pgsql.buildlink3.mk"
|
|
.endif
|