summaryrefslogtreecommitdiff
path: root/editors/vim5
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-12-05 17:25:44 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-12-05 17:25:44 +0000
commit280ed5046a8c75afb085dfd662d0d2a42e209403 (patch)
tree0c93f393ba4d17d030633d36aac9f6bf62438360 /editors/vim5
parentFinish cleaning up after the switch to Open Motif. (diff)
Finish cleaning up after the switch to Open Motif. Building with
Motif is the default unless WITH_ATHENA or WITH_GTK is defined.
Notes
Notes: svn path=/head/; revision=35691
Diffstat (limited to 'editors/vim5')
-rw-r--r--editors/vim5/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile
index bd8805efd278..13f4a9cbdbda 100644
--- a/editors/vim5/Makefile
+++ b/editors/vim5/Makefile
@@ -54,14 +54,13 @@ I18N= CONF_OPT_MULTIBYTE="--enable-multibyte --enable-fontset --enable-multibyt
.if defined(WITH_ATHENA)
MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=athena" ${I18N}
+#MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=yes" ${I18N}
.elif defined(WITH_GTK)
USE_GTK= yes
MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=gtk --with-gtk-prefix=${X11BASE}" ${I18N}
-.elif defined(HAVE_MOTIF)
+.else
USE_MOTIF= yes
MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\"" MOTIFHOME=${X11BASE} ${I18N}
-.else
-MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=yes" ${I18N}
.endif
.if defined(PACKAGE_BUILDING)