diff options
Diffstat (limited to 'editors/emacs20/Makefile')
-rw-r--r-- | editors/emacs20/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/editors/emacs20/Makefile b/editors/emacs20/Makefile index 8926d56..a2f81a6 100644 --- a/editors/emacs20/Makefile +++ b/editors/emacs20/Makefile @@ -1,12 +1,12 @@ # New ports collection makefile for: GNU emacs -# Version required: 20.3 +# Version required: 20.4 # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.40 1999/03/11 21:47:10 scrappy Exp $ +# $Id: Makefile,v 1.41 1999/06/25 22:05:58 jseger Exp $ # -DISTNAME= emacs-20.3 +DISTNAME= emacs-20.4 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= emacs @@ -27,14 +27,20 @@ CONFIGURE_ARGS= --with-x=no --with-pop MAKE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" MAN1= emacs.1 etags.1 ctags.1 -PLIST_SUB= EMACS_VER=20.3 EMACS_ARCH=${CONFIGURE_TARGET} +PLIST_SUB= EMACS_VER=20.4 EMACS_ARCH=${CONFIGURE_TARGET} -.if defined(USE_XPGLIB) -.if (${USE_XPGLIB} == "YES") +.if defined(USE_XPG4) +.if (${USE_XPG4} == "YES" || ${USE_XPG4} == "yes") CONFIGURE_ARGS+= --with-xpg4 .endif .endif +pre-fetch: +.if !defined(USE_XPG4) + @${ECHO_MSG} "NOTE: You can have international locale library support " + @${ECHO_MSG} "by adding \"USE_XPG4=YES\" to argument of make." +.endif + pre-build: ${RM} -rf ${WRKSRC}/info/* |