diff options
author | jmz <jmz@FreeBSD.org> | 2001-04-16 01:31:16 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2001-04-16 01:31:16 +0000 |
commit | f0fa5978c88f2a394d12bd941f6a3c729a34e24a (patch) | |
tree | d53aaeda6b78023addc8f7dca7bc5017192a7646 /emulators | |
parent | 487b7d2b71f993ff41c9df38b7e198ac3f777b43 (diff) | |
download | FreeBSD-ports-f0fa5978c88f2a394d12bd941f6a3c729a34e24a.zip FreeBSD-ports-f0fa5978c88f2a394d12bd941f6a3c729a34e24a.tar.gz |
Use !defined(NO_X) instead of defined(WITH_X11)
Some ports use WITH_X11, some other WITHOUT_X11 or WITHOUT_X but it seems
that only NO_X is documented and can be set in make.conf
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/mtools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/mtools/Makefile b/emulators/mtools/Makefile index 962fd68..0225525 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(WITH_X11) +.if !defined(NO_X) USE_XLIB= yes CONFIGURE_ARGS= --enable-xdf --enable-floppyd PLIST= pkg-plist.x11 @@ -35,7 +35,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(WITH_X11) +.if !defined(NO_X) MAN1+= floppyd.1 floppyd_installtest.1 .endif |