diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-06-05 11:38:35 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-06-05 11:38:35 +0000 |
commit | 053fd210dfb21a6ab915fb493618c4b6c097ec06 (patch) | |
tree | ce1effe547ea71762f28c9ca1843326696099a34 /print/ghostscript8 | |
parent | a89b2f073dc7dd991872fe5f4f9c8bf20341af75 (diff) | |
download | FreeBSD-ports-053fd210dfb21a6ab915fb493618c4b6c097ec06.zip FreeBSD-ports-053fd210dfb21a6ab915fb493618c4b6c097ec06.tar.gz |
Standartise the way used to disable X11 support in various ports. From now
on WITHOUT_X11 is the Only True Way[tm].
Diffstat (limited to 'print/ghostscript8')
-rw-r--r-- | print/ghostscript8/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print/ghostscript8/Makefile b/print/ghostscript8/Makefile index 02ce82b..04c44f5 100644 --- a/print/ghostscript8/Makefile +++ b/print/ghostscript8/Makefile @@ -40,12 +40,12 @@ LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png WRKSRC= ${WRKDIR}/gs${PORTVERSION} ALL_TARGET= all pcl3opts escputil -.if !defined(NO_X) +.if !defined(WITHOUT_X11) USE_XLIB= yes .else -# XXX Hack. If you've done something like "-DNO_X" on the command line -# (instead of NO_X=true, or similar) gmake won't pick it up. So make sure -# that NO_X is defined *and* has a value. +# XXX Hack. If you've done something like "-DWITHOUT_X11" on the command line +# (instead of WITHOUT_X11=true, or similar) gmake won't pick it up. So make +# sure that NO_X is defined *and* has a value. MAKE_ENV+= NO_X=true .endif |