pkgsrc/x11/qt4-libs/options.mk

21 lines
419 B
Makefile
Raw Normal View History

# $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