d0f9c677c0
-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
20 lines
419 B
Makefile
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
|