![]() ![]() | ![]() |
File: [cvs.NetBSD.org] / pkgsrc / lang / gauche / options.mk (download)
Revision 1.3, Mon Dec 5 23:55:09 2005 UTC (17 years, 1 month ago) by rillig
Ran "pkglint --autofix", which corrected some of the quoting issues in CONFIGURE_ARGS. |
# $NetBSD: options.mk,v 1.3 2005/12/05 23:55:09 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gauche PKG_SUPPORTED_OPTIONS= gdbm multibyte PKG_SUGGESTED_OPTIONS= gdbm multibyte .include "../../mk/bsd.options.mk" .include "../../mk/bsd.prefs.mk" ### ### GDBM extension. Modules seem to be better tested with GDBM ### than NDBM. ### .if !empty(PKG_OPTIONS:Mgdbm) . include "../../databases/gdbm/buildlink3.mk" PLIST_SUBST+= USE_GDBM='' .else PLIST_SUBST+= USE_GDBM='@comment ' .endif ### ### Multibyte extension. ### .if !empty(PKG_OPTIONS:Mmultibyte) && defined(GAUCHE_MULTIBYTE) CONFIGURE_ARGS+= --enable-multibyte=${GAUCHE_MULTIBYTE:Q} .endif .if defined(PKG_DEVELOPER) .PHONY: print-multibyte-options print-multibyte-options: ${SED} -ne '/load "/ { s|^.*load "\([^"]*\)".*$|\1|; p; }' ${WRKSRC}/test/mb-chars.scm .endif