diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2016-12-25 04:52:41 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2016-12-25 04:52:41 +0000 |
commit | 4d7b8b35b011e202c55ec64e05349ebb390f4680 (patch) | |
tree | 318cf7a496ebb6c7b1de78c3129695545f154eda /Mk | |
parent | 06e9773ae037787985162aa347bba4b6724480f0 (diff) | |
download | ports-4d7b8b35b011e202c55ec64e05349ebb390f4680.tar.gz ports-4d7b8b35b011e202c55ec64e05349ebb390f4680.zip |
editors/emacs-devel: Update to pull in new concurrency features.
- Minimize the differences with editors/emacs.
- Do not require GCC to work around a clang bug. The OS versions for
which this was relevant are no longer supported.
- The check for X11 is handled with the X11 option and _IMPLIES, so
remove the redundant .if logic.
Approved by: swills (mentor) asish (maintainer)
Differential Revision: https://reviews.freebsd.org/D8796
Notes
Notes:
svn path=/head/; revision=429394
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.emacs.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.emacs.mk b/Mk/bsd.emacs.mk index d245df098e78..3b7f3be8ed7f 100644 --- a/Mk/bsd.emacs.mk +++ b/Mk/bsd.emacs.mk @@ -80,11 +80,11 @@ DESCR?= ${PKGDIR}/pkg-descr.${EMACS_PORT_NAME} PLIST?= ${PKGDIR}/pkg-plist.${EMACS_PORT_NAME} .endif -# Emacs-25.x (development version) +# Emacs-26.x (development version) .elif (${EMACS_PORT_NAME} == "emacs-devel") EMACS_NAME= emacs -EMACS_VER= 25.2.50 -EMACS_MAJOR_VER= 25 +EMACS_VER= 26.0.50 +EMACS_MAJOR_VER= 26 EMACS_LIBDIR?= share/${EMACS_NAME} EMACS_LIBDIR_WITH_VER?= share/${EMACS_NAME}/${EMACS_VER} EMACS_PORTDIR= editors/emacs-devel |