7dc092d876
packaged for wip by nros. SQLite 3 driver for the Qore language DBI system, using this module Qore programs can access SQLite 3 file and in-memory databases using the Datasource and DatasourcePool classes.
12 lines
298 B
Makefile
12 lines
298 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/12/30 15:45:04 wiz Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.qore-sqlite3-module
|
|
PKG_SUPPORTED_OPTIONS= debug
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-debug
|
|
.endif
|