summaryrefslogtreecommitdiff
path: root/emulators/mtools
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2001-06-05 11:38:35 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2001-06-05 11:38:35 +0000
commit400f4557f621dbddf5da9a9c3f672d54d04cd85a (patch)
tree62415c090168bbbce63fa6ac99b77ed4776e2edb /emulators/mtools
parentFix typo in comment. (diff)
Standartise the way used to disable X11 support in various ports. From now
on WITHOUT_X11 is the Only True Way[tm].
Notes
Notes: svn path=/head/; revision=43523
Diffstat (limited to 'emulators/mtools')
-rw-r--r--emulators/mtools/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/mtools/Makefile b/emulators/mtools/Makefile
index 700c3509cae9..93adc15f3132 100644
--- a/emulators/mtools/Makefile
+++ b/emulators/mtools/Makefile
@@ -19,7 +19,7 @@ PATCH_DIST_STRIP= -p1
MAINTAINER= jmz@FreeBSD.org
GNU_CONFIGURE= yes
-.if !defined(NO_X)
+.if !defined(WITHOUT_X11)
USE_XLIB= yes
CONFIGURE_ARGS= --enable-xdf --enable-floppyd
PLIST_SUB= WITH_X11=""
@@ -36,7 +36,7 @@ MAN1= mattrib.1 mbadblocks.1 mcat.1 mcd.1 mcopy.1 mdel.1 mdeltree.1 \
mtoolstest.1 mtools.1 mtype.1 mzip.1
MAN5= mtools.5
-.if !defined(NO_X)
+.if !defined(WITHOUT_X11)
MAN1+= floppyd.1 floppyd_installtest.1
.endif