diff options
author | gj <gj@FreeBSD.org> | 1998-01-01 21:06:47 +0000 |
---|---|---|
committer | gj <gj@FreeBSD.org> | 1998-01-01 21:06:47 +0000 |
commit | 80007e718178d2e1679add6c76ffeaefe4affa0a (patch) | |
tree | bb758784d77e502a5af2964e5de352035dc28dc7 /editors/xemacs | |
parent | 842e648a42bb241f11f3bccca7018a36ee9f2b95 (diff) | |
download | FreeBSD-ports-80007e718178d2e1679add6c76ffeaefe4affa0a.zip FreeBSD-ports-80007e718178d2e1679add6c76ffeaefe4affa0a.tar.gz |
PR: ports/5357
Obtained from: Maintainer (partly)
modify the Makefile to use PLIST.mule if USE_MULE is defined. This
will allow the version with mule to be successfullt packaged and
pkg_delete'd.
Add a warning, obtained from the Maintainer, in the case where
HAVE_MOTIF is defined but MOTIF is really lesstif. It seems that
some users have seen problems with that constellation.
Add pkg/PLIST.mule to be used for the mule version.
Satoshi forgot to close the PR when he made his commit for the
reported problem with generating a version with mule.
Diffstat (limited to 'editors/xemacs')
-rw-r--r-- | editors/xemacs/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index 7a42831..f0b8bde 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -3,7 +3,7 @@ # Date created: 26 August 1997 # Whom: Michael Elbel (me) # -# $Id: Makefile,v 1.5 1997/12/15 20:07:20 gj Exp $ +# $Id: Makefile,v 1.6 1997/12/27 02:53:16 asami Exp $ # DISTNAME= xemacs-20.3 @@ -42,10 +42,18 @@ ALL_TARGET= all dist # Have pre-configure: @echo "To compile in the MULE features, set the environment variable USE_MULE" +.if defined(HAVE_MOTIF) + @echo + @echo "If your MOTIF library is actually lesstif, you might occasionally" + @echo "experience locked-up frames." + @echo "In this case, set the environment variable MOTIF_STATIC and recompile, " + @echo "which will force the use of athena widgets for dialogs." +.endif .if defined(USE_MULE) WITH_MULE= --with-mule MULEDISTFILE= ${DISTNAME}-mule.tar.gz +PLIST= ${PKGDIR}/PLIST.mule .endif # hack to avoid shipping binaries linked with Motif |