From c1359c553431ae72c9a0da04928f2529aa7c014a Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 27 Mar 2002 02:03:02 +0000 Subject: [PATCH] lilypond-1.5.13 --- aclocal.m4 | 9 ++++++--- stepmake/aclocal.m4 | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/aclocal.m4 b/aclocal.m4 index fd2b360a3a..1cf59b1171 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -435,17 +435,20 @@ dnl fi AC_DEFUN(AC_STEPMAKE_KPATHSEA, [ kpathsea_b=yes + #FIXME --with-xxx is meant for specifying a PATH too, + # so this should read: --enable-kpathsea, + # or --with-kpathsea-include=PATH --with-kpathsea-lib=PATH AC_ARG_WITH(kpathsea, [ --with-kpathsea use kpathsea lib. Default: on], - [kpathsea_b=$enableval]) + [kpathsea_b=$with_kpathsea]) - if test "$kpathsea_b" = "yes"; then + if test "$kpathsea_b" != "no"; then AC_HAVE_HEADERS(kpathsea/kpathsea.h) AC_CHECK_LIB(kpathsea, kpse_find_file) AC_CHECK_FUNCS(kpse_find_file,, AC_ERROR(Cannot find kpathsea functions. You should install kpathsea; see INSTALL.txt. Rerun ./configure --without-kpathsea only if kpathsea is not available for your platform.)) fi AC_MSG_CHECKING(whether to use kpathsea) - if test "$kpathsea_b" = yes; then + if test "$kpathsea_b" != no; then AC_MSG_RESULT(yes) KPATHSEA=1 else diff --git a/stepmake/aclocal.m4 b/stepmake/aclocal.m4 index fd2b360a3a..1cf59b1171 100644 --- a/stepmake/aclocal.m4 +++ b/stepmake/aclocal.m4 @@ -435,17 +435,20 @@ dnl fi AC_DEFUN(AC_STEPMAKE_KPATHSEA, [ kpathsea_b=yes + #FIXME --with-xxx is meant for specifying a PATH too, + # so this should read: --enable-kpathsea, + # or --with-kpathsea-include=PATH --with-kpathsea-lib=PATH AC_ARG_WITH(kpathsea, [ --with-kpathsea use kpathsea lib. Default: on], - [kpathsea_b=$enableval]) + [kpathsea_b=$with_kpathsea]) - if test "$kpathsea_b" = "yes"; then + if test "$kpathsea_b" != "no"; then AC_HAVE_HEADERS(kpathsea/kpathsea.h) AC_CHECK_LIB(kpathsea, kpse_find_file) AC_CHECK_FUNCS(kpse_find_file,, AC_ERROR(Cannot find kpathsea functions. You should install kpathsea; see INSTALL.txt. Rerun ./configure --without-kpathsea only if kpathsea is not available for your platform.)) fi AC_MSG_CHECKING(whether to use kpathsea) - if test "$kpathsea_b" = yes; then + if test "$kpathsea_b" != no; then AC_MSG_RESULT(yes) KPATHSEA=1 else -- 2.39.5