diff options
author | jrm <jrm@FreeBSD.org> | 2018-06-13 10:23:30 +0800 |
---|---|---|
committer | jrm <jrm@FreeBSD.org> | 2018-06-13 10:23:30 +0800 |
commit | d321908fef0d7208fa316e5a8652974bad58b337 (patch) | |
tree | 03a5f9b4b6a52dad3b23544d37c8631ea450551b /editors | |
parent | cd042654fa1cc79b5d94a79b57a358d0169f305d (diff) | |
download | freebsd-ports-gnome-d321908fef0d7208fa316e5a8652974bad58b337.tar.gz freebsd-ports-gnome-d321908fef0d7208fa316e5a8652974bad58b337.tar.zst freebsd-ports-gnome-d321908fef0d7208fa316e5a8652974bad58b337.zip |
editors/emacs-devel: Restore configure patch to accept base makeinfo
The configure patch was removed in r472261, because I incorrectly thought
/usr/bin/makeinfo had been removed from base in 10.4.
Pointy-hat: jrm
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs-devel/files/patch-configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/editors/emacs-devel/files/patch-configure.ac b/editors/emacs-devel/files/patch-configure.ac new file mode 100644 index 000000000000..2dc44ce5cb0a --- /dev/null +++ b/editors/emacs-devel/files/patch-configure.ac @@ -0,0 +1,12 @@ +--- configure.ac.orig 2017-09-03 12:54:18 UTC ++++ configure.ac +@@ -1251,7 +1251,8 @@ AC_SUBST([PAXCTL_notdumped]) + ## Require makeinfo >= 4.13 (last of the 4.x series) to build the manuals. + if test "${MAKEINFO:=makeinfo}" != "no"; then + case `($MAKEINFO --version) 2>/dev/null` in +- *' (GNU texinfo) '4.1[[3-9]]* | \ ++ *' (GNU texinfo) '4.[[8-9]]* | \ ++ *' (GNU texinfo) '4.1[[0-9]]* | \ + *' (GNU texinfo) '[[5-9]]* | \ + *' (GNU texinfo) '[[1-9][0-9]]* ) ;; + *) MAKEINFO=no;; |