From: Han-Wen Nienhuys Date: Sun, 30 Apr 2006 23:40:09 +0000 (+0000) Subject: (LINK_GXX_STATICALLY): remove locate() call. X-Git-Tag: release/2.9.3~19 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=077313aae267c4039adb6072c25ee9feb2534718;p=lilypond.git (LINK_GXX_STATICALLY): remove locate() call. --- diff --git a/ChangeLog b/ChangeLog index 620923537a..5ab363e981 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-05-01 Han-Wen Nienhuys + + * configure.in (LINK_GXX_STATICALLY): remove locate() call. + 2006-04-30 Han-Wen Nienhuys * python/convertrules.py (conv): indent 4 for python files. @@ -14,6 +18,8 @@ 2006-04-27 Han-Wen Nienhuys + * mf/GNUmakefile (MFTRACE_FLAGS): add $(outdir) to $(ENCODING_FILE) + * scm/framework-ps.scm (output-framework): remove PageMedia 2006-04-27 Graham Percival diff --git a/VERSION b/VERSION index 94c00a4cec..c6046fa0f2 100644 --- a/VERSION +++ b/VERSION @@ -1,6 +1,6 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=2 MINOR_VERSION=9 -PATCH_LEVEL=2 +PATCH_LEVEL=3 MY_PATCH_LEVEL= diff --git a/configure.in b/configure.in index 9323c37602..42eeda511c 100644 --- a/configure.in +++ b/configure.in @@ -36,8 +36,7 @@ AC_ARG_ENABLE(gui, NCSB_DIR=unknown AC_ARG_WITH(ncsb-dir, -[ --with-ncsb-dir=DIR location of Century Schoolbook fonts - Default: detect with locate(1)], +[ --with-ncsb-dir=DIR location of Century Schoolbook fonts.], [NCSB_DIR=$withval]) reloc_b=no @@ -106,23 +105,10 @@ fi AC_MSG_CHECKING([New Century Schoolbook PFB files]) if test "$NCSB_DIR" = "unknown"; then - # use `type' command rather than external program `which' - type locate >& /dev/null - if test "$?" = "0"; then - for d in `locate c059033l.pfb `; do - if test -f `dirname "$d"`/c059033l.afm ; then - NCSB_DIR=`dirname "$d"` - break - fi - done - if test "$NCSB_DIR" = "unknown"; then - AC_MSG_WARN(Could not find c059033l.pfb. Use --enable-ncsb-path to set path) - fi - else - AC_MSG_WARN(Could not find locate(1). Use --enable-ncsb-path to set path to c059033l.pfb) - fi + AC_MSG_WARN(Use --enable-ncsb-path to set path) fi + AC_MSG_RESULT($NCSB_DIR) AC_SUBST(NCSB_DIR)