aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-08-24 03:03:09 +0000
committerGlenn Morris2007-08-24 03:03:09 +0000
commitd25b54b37c637cbe245c9c3deb85891bd3853ff6 (patch)
treebfa567b720cc7ab166c6cdf9c7fc8ba064851341
parent5f5ba82536858ccac91a7dff38d95e75b23c5e55 (diff)
downloademacs-d25b54b37c637cbe245c9c3deb85891bd3853ff6.tar.gz
emacs-d25b54b37c637cbe245c9c3deb85891bd3853ff6.zip
Check for a suitably recent makeinfo.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in15
-rw-r--r--lisp/ChangeLog2
3 files changed, 21 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c9c307ba128..813452e1272 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12007-08-24 Glenn Morris <rgm@gnu.org>
2
3 * configure.in: Check for a suitably recent makeinfo.
4
12007-08-23 Johannes Weiner <hannes@saeurebad.de> (tiny change) 52007-08-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
2 6
3 * configure.in (Check for required libraries): Typo. 7 * configure.in (Check for required libraries): Typo.
diff --git a/configure.in b/configure.in
index fbf0b440b1b..fe23864c0a9 100644
--- a/configure.in
+++ b/configure.in
@@ -1343,6 +1343,21 @@ AC_PATH_PROG(INSTALL_INFO, install-info,:, /sbin)
1343dnl Don't use GZIP, which is used by gzip for additional parameters. 1343dnl Don't use GZIP, which is used by gzip for additional parameters.
1344AC_PATH_PROG(GZIP_PROG, gzip) 1344AC_PATH_PROG(GZIP_PROG, gzip)
1345 1345
1346
1347## Need makeinfo >= 4.8 (?) to build the manuals.
1348AC_PATH_PROG(MAKEINFO, makeinfo, no)
1349dnl By this stage, configure has already checked for egrep and set EGREP,
1350dnl or exited with an error if no egrep was found.
1351if test "$MAKEINFO" != "no" && \
1352 test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[5-9]]|4\.[[8-9]])'`" = x; then
1353 MAKEINFO=no
1354fi
1355
1356if test "$MAKEINFO" = "no"; then
1357 AC_MSG_ERROR( [makeinfo >= 4.8 is required] )
1358fi
1359
1360
1346dnl Add our options to ac_link now, after it is set up. 1361dnl Add our options to ac_link now, after it is set up.
1347 1362
1348if test x$GCC = xyes && test "x$GCC_LINK_TEST_OPTIONS" != x 1363if test x$GCC = xyes && test "x$GCC_LINK_TEST_OPTIONS" != x
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bfeef25ffcb..f1b082c618f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12007-08-24 Glenn Morris <rgm@gnu.org> 12007-08-24 Glenn Morris <rgm@gnu.org>
2 2
3 * files.el (backup-buffer-copy): Revert 2007-08-22 change.
4
3 * startup.el (tutorial-directory): Set with eval-at-startup so it 5 * startup.el (tutorial-directory): Set with eval-at-startup so it
4 gets the right value in an installed Emacs. 6 gets the right value in an installed Emacs.
5 7