]> git.eshelyaron.com Git - emacs.git/commitdiff
Check for a suitably recent makeinfo.
authorGlenn Morris <rgm@gnu.org>
Fri, 24 Aug 2007 03:03:09 +0000 (03:03 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 24 Aug 2007 03:03:09 +0000 (03:03 +0000)
ChangeLog
configure.in
lisp/ChangeLog

index c9c307ba12878e9fb6ab565da2bf60f5f01367a1..813452e1272d285fa3e77d88eae51d96dcef2405 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-24  Glenn Morris  <rgm@gnu.org>
+
+       * configure.in: Check for a suitably recent makeinfo.
+
 2007-08-23  Johannes Weiner  <hannes@saeurebad.de>  (tiny change)
 
        * configure.in (Check for required libraries): Typo.
index fbf0b440b1bab804db3c16e7c6b80c90f2a6979a..fe23864c0a940dfcbd694d9e0a7b37cf167fa319 100644 (file)
@@ -1343,6 +1343,21 @@ AC_PATH_PROG(INSTALL_INFO, install-info,:, /sbin)
 dnl Don't use GZIP, which is used by gzip for additional parameters.
 AC_PATH_PROG(GZIP_PROG, gzip)
 
+
+## Need makeinfo >= 4.8 (?) to build the manuals.
+AC_PATH_PROG(MAKEINFO, makeinfo, no)
+dnl By this stage, configure has already checked for egrep and set EGREP, 
+dnl or exited with an error if no egrep was found.
+if test "$MAKEINFO" != "no" && \
+  test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[5-9]]|4\.[[8-9]])'`" = x; then
+   MAKEINFO=no    
+fi
+
+if test "$MAKEINFO" = "no"; then
+  AC_MSG_ERROR( [makeinfo >= 4.8 is required] )
+fi
+
+
 dnl Add our options to ac_link now, after it is set up.
 
 if test x$GCC = xyes && test "x$GCC_LINK_TEST_OPTIONS" != x
index bfeef25ffcb0686cebad23af510ed002f81eb367..f1b082c618fe1e2b2f549186264e457ceb18ea4f 100644 (file)
@@ -1,5 +1,7 @@
 2007-08-24  Glenn Morris  <rgm@gnu.org>
 
+       * files.el (backup-buffer-copy): Revert 2007-08-22 change.
+
        * startup.el (tutorial-directory): Set with eval-at-startup so it
        gets the right value in an installed Emacs.