diff options
author | edwin <edwin@FreeBSD.org> | 2004-04-13 16:10:24 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-04-13 16:10:24 +0800 |
commit | a22feb250a1adba311adb8bb9af6448cd66d1efb (patch) | |
tree | 93b8cd6b4bf63ab87ea1226e015a46ff473d7dd1 /editors | |
parent | f07ace84ba2df0422b2bb729e9046fd765dbfe1e (diff) | |
download | freebsd-ports-gnome-a22feb250a1adba311adb8bb9af6448cd66d1efb.tar.gz freebsd-ports-gnome-a22feb250a1adba311adb8bb9af6448cd66d1efb.tar.zst freebsd-ports-gnome-a22feb250a1adba311adb8bb9af6448cd66d1efb.zip |
Also fix this ones Makefile by moving the test for libXm.so more up.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs-devel/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/editors/xemacs-devel/Makefile b/editors/xemacs-devel/Makefile index 46cff2bdaeb9..de0748ba4fa4 100644 --- a/editors/xemacs-devel/Makefile +++ b/editors/xemacs-devel/Makefile @@ -62,15 +62,16 @@ PLIST_SUB= XEMACS_VER=${XEMACS_VER} XEMACS_ARCH=${XEMACS_ARCH} CONFIGURE_ARGS+= --with-system-malloc --pdump .endif +.if exists(${X11BASE}/lib/libXm.so) +USE_MOTIF= yes +HAVE_MOTIF= yes +.endif + pre-fetch: #.if !defined(WANT_GTK) # @${ECHO_MSG} "If you want to use GTK, please set the environment variable WANT_GTK " # @${ECHO_MSG} "and recompile." #.endif -.if exists(${X11BASE}/lib/libXm.so) -USE_MOTIF= yes -HAVE_MOTIF= yes -.endif .if defined(HAVE_MOTIF) .if !defined(MOTIF_STATIC) @${ECHO_MSG} "" |