1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/devel/qt4/files/Makefile.options
Max Brazhnikov fd7f0892de - Connect recently added qmlviewer
- Enable CUPS support by default [1].
  No PORTREVISION bump, CUPS was always enabled when PACKAGE_BUILDING is set.

Suggested by:	jhb [1]
2012-06-14 17:14:30 +00:00

18 lines
619 B
Makefile

# For (almost?) any QT_NO_* setting in QCONFIG_FLAGS (see the
# configure script), qt4-corelib adds to qconfig.h a conditional check
# made to disable by default (i.e., if it wasn't explicitly turned on)
# the related feature. QT4_OPTIONS are required to tweak qconfig.h
# without making qt4-corelib depend on useless stuff. Both qt4-corelib
# and qt4-gui must be recompiled when changing options.
QT4_OPTIONS_ALL=CUPS NAS QGTKSTYLE
QT4_OPTIONS?= CUPS
.for opt in ${QT4_OPTIONS_ALL}
${opt}_REPLACE=
QT4_OPTIONS_REPLACE+= s,%%${opt}%%,${${opt}_REPLACE},g;
.endfor
.for opt in ${QT4_OPTIONS}
${opt}_REPLACE= \#
.endfor