blob: 8964196b8b37990726dd0e98d79ef0e49d938db5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: options.mk,v 1.1.1.1 2011/02/08 18:32:23 drochner Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gps
PKG_SUPPORTED_OPTIONS= sqlite pgsql
PKG_SUGGESTED_OPTIONS=
.include "../../mk/bsd.options.mk"
######################
## SQLITE SUPPORT ##
######################
.if !empty(PKG_OPTIONS:Msqlite)
CONFIGURE_ARGS+= --with-sqlite=${PREFIX}
.include "../../databases/sqlite/buildlink3.mk"
.endif
##########################
## POSTGRESQL SUPPORT ##
##########################
.if !empty(PKG_OPTIONS:Mpgsql)
CONFIGURE_ARGS+= --with-postgresql=${PREFIX}
.include "../../databases/postgresql90-client/buildlink3.mk"
.endif
|