diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-04-04 02:49:57 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-04-04 02:49:57 +0000 |
commit | 00f2693518f7e60839a00e7d0518a608cad6a0c6 (patch) | |
tree | af13926aa67b389ab7507ce511d953909a37c48e /editors/bed | |
parent | 504a94dc8d58b7b67ae5b257f252813e8e16266a (diff) | |
download | ports-00f2693518f7e60839a00e7d0518a608cad6a0c6.tar.gz ports-00f2693518f7e60839a00e7d0518a608cad6a0c6.zip |
Notes
Diffstat (limited to 'editors/bed')
-rw-r--r-- | editors/bed/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editors/bed/Makefile b/editors/bed/Makefile index a81997a48d31..f11c22bb4bd6 100644 --- a/editors/bed/Makefile +++ b/editors/bed/Makefile @@ -34,12 +34,6 @@ USE_GMAKE= yes MAN1= bed.1 xbed.1 MANCOMPRESSED= yes -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+= --without-x -PLIST_SUB+= X11="@comment " -.else -PLIST_SUB+= X11="" - .include <bsd.port.pre.mk> .if ${ARCH} == "amd64" @@ -50,6 +44,12 @@ BROKEN= "Does not compile on amd64 (missing -fPIC)" BROKEN= "Hangs during configure" .endif +.if defined(WITHOUT_X11) +CONFIGURE_ARGS+= --without-x +PLIST_SUB+= X11="@comment " +.else +PLIST_SUB+= X11="" + .if !defined(BATCH) && !defined(PACKAGE_BUILDING) pre-configure: @if "${X11BASE}/bin/rxvt" -h 2>&1 | ${GREP} -qi menubar; then \ |