From 945492433c89f6d71ed13c9fb46f4fa542e03849 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 14 Mar 2005 21:05:32 +0000 Subject: [PATCH] * make/ly-rules.make ($(outdir)/%.nexi): Remove old makeinfo compatibility. * Documentation/user/GNUmakefile: Remove splitting-makeinfo. --- ChangeLog | 7 +++++++ Documentation/user/GNUmakefile | 17 ----------------- config.make.in | 2 -- configure.in | 2 -- make/ly-rules.make | 5 ----- stepmake/aclocal.m4 | 23 ----------------------- 6 files changed, 7 insertions(+), 49 deletions(-) diff --git a/ChangeLog b/ChangeLog index e878b05924..c74844bb63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-03-14 Jan Nieuwenhuizen + + * make/ly-rules.make ($(outdir)/%.nexi): Remove old makeinfo + compatibility. + + * Documentation/user/GNUmakefile: Remove splitting-makeinfo. + 2005-03-13 Jan Nieuwenhuizen * input/regression/page-breaks.ly: Fix and update. diff --git a/Documentation/user/GNUmakefile b/Documentation/user/GNUmakefile index 073924a74b..d62ef59012 100644 --- a/Documentation/user/GNUmakefile +++ b/Documentation/user/GNUmakefile @@ -117,8 +117,6 @@ $(outdir)/lilypond-internals/lilypond-internals.xml: $(outdir)/lilypond-internal mkdir -p $(dir $@) $(MAKEINFO) --output=$(outdir)/lilypond-internals --docbook $< -ifeq ($(SPLITTING_MAKEINFO),yes) - $(outdir)/lilypond.dvi: $(OUT_EPS_IMAGES) $(OUT_PNG_IMAGES) $(outdir)/%.png: %.png @@ -129,21 +127,6 @@ $(outdir)/%.eps: %.png DEEP_HTML_FILES = $(outdir)/lilypond/lilypond.html $(outdir)/lilypond-internals/lilypond-internals.html -else - -# Links referred to by Documentation index -LILYPOND_LINKS=Reference-Manual.html Tutorial.html Ly2dvi.html Midi2ly.html - -local-WWW: outimages deep-symlinks - -deep-symlinks: - mkdir -p $(outdir)/lilypond - cd $(outdir)/lilypond && $(foreach i, $(LILYPOND_LINKS),\ - rm -f $(i) && ln -s lilypond.html $(i) &&) true - -endif - - local-WWW: $(HTML_FILES) $(datafiles) $(PDF_FILES) $(PS_GZ_FILES) $(DEEP_HTML_FILES) info info-dir local-WWW-clean: deep-WWW-clean diff --git a/config.make.in b/config.make.in index c550138b18..2ee6b9553e 100644 --- a/config.make.in +++ b/config.make.in @@ -70,8 +70,6 @@ GXX = @GXX@ LD = @LD@ CONFIGSUFFIX = @CONFIGSUFFIX@ MAKEINFO_PROGRAM = @MAKEINFO@ -SPLITTING_MAKEINFO = @SPLITTING_MAKEINFO@ -MAKEINFO_VERSION = @MAKEINFO_VERSION@ ICFLAGS = @ICFLAGS@ ILDFLAGS = @ILDFLAGS@ TFM_PATH = @TFM_PATH@ diff --git a/configure.in b/configure.in index 1aade60597..4bfa1c9cbc 100644 --- a/configure.in +++ b/configure.in @@ -97,8 +97,6 @@ STEPMAKE_PROGS(MFTRACE, mftrace, OPTIONAL, 1.1.1) # new makeinfo for multi-page website docs STEPMAKE_PROGS(MAKEINFO, makeinfo, REQUIRED, 4.7) -AC_SUBST(MAKEINFO_VERSION) - if test "$optimise_b" = yes; then DEFINES="$DEFINES -DSTRING_UTILS_INLINED" diff --git a/make/ly-rules.make b/make/ly-rules.make index 0ab32491c1..6901ddef58 100644 --- a/make/ly-rules.make +++ b/make/ly-rules.make @@ -23,11 +23,6 @@ $(outdir)/%.nexi: %.tely rm -f $(outdir)/$*.texi $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) --process='true' $< mv $(outdir)/$*.texinfo $@ 2>/dev/null || mv $(outdir)/$*.texi $@ -# makeinfo <= 4.6 image bug workaround - if [ $(MAKEINFO_VERSION) -le 4006000 ]; then \ - (cd $(outdir) && \ - ls -1 lily-*.ly | sed 's/.ly$$/.txt/' | xargs touch) || true; \ - fi $(outdir)/%.info: $(outdir)/%.nexi $(MAKEINFO) -I $(outdir) --output=$(outdir)/$(*F).info $< diff --git a/stepmake/aclocal.m4 b/stepmake/aclocal.m4 index 75650eb31f..7057ffd0f5 100644 --- a/stepmake/aclocal.m4 +++ b/stepmake/aclocal.m4 @@ -840,37 +840,14 @@ AC_DEFUN(STEPMAKE_LOCALE, [ if test "$lang" = "unknown" ; then STEPMAKE_WARN($language not supported; available are: $ALL_LINGUAS) fi - ]) AC_DEFUN(STEPMAKE_MAKEINFO, [ STEPMAKE_PROGS(MAKEINFO, makeinfo, $1) - if test "$MAKEINFO" = "makeinfo"; then - AC_MSG_CHECKING(whether makeinfo can split html by @node) - mkdir -p out - makeinfo --html --output=out/split <