pkgsrc/x11/qt4-libs/options.mk
drochner d0f9c677c0 -make sqlite support an extra pkg instead of an option
-work around iconv(3) incompatibilities: while NetBSD's iconv() is
 probed as GNU iconv (due to its signature), it doesn't support empty
 strings as encoding (interpreted as "current locale's encoding" by
 GNU iconv). Enable some code which uses nl_langinfo(CODESET) to make
 it work as expected.
-update to 4.3.1
 changes:
 -bugfixes
 -Updated the German translation to provide complete coverage of Qt
2007-09-03 09:35:15 +00:00

20 lines
419 B
Makefile

# $NetBSD: options.mk,v 1.3 2007/09/03 09:35:16 drochner Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.qt4
PKG_SUPPORTED_OPTIONS= cups debug
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mcups)
. include "../../print/cups/buildlink3.mk"
CONFIGURE_ARGS+= -cups
.else
CONFIGURE_ARGS+= -no-cups
.endif
.if !empty(PKG_OPTIONS:Mdebug)
CC+= -ggdb
CXX+= -ggdb
CONFIGURE_ARGS+= --debug
INSTALL_UNSTRIPPED= yes
.endif