Re: configure error for last cvs sources

niXman <[email protected]> Sat, 22 Sep 2012 00:14:25 +0400
Newsgroups gmane.comp.gnu.make.windows
Message-ID <CAMPTgK2gfJ356VfDOvv_P+oWmx6rL+cDFvXyxByrKZ14JBeOLQ@mail.gmail.com>
If I remove this lines from configure - everything is ok.


# See if the user wants to add (or not) GNU Guile support
PKG_PROG_PKG_CONFIG

# Check whether --with-guile was given.
if test "${with_guile+set}" = set; then :
  withval=$with_guile;
fi


# For some strange reason, at least on Ubuntu, each version of Guile
# comes with it's own PC file so we have to specify them as individual
# packages.  Ugh.
if test "x$with_guile" != xno; then :
   PKG_CHECK_MODULES(GUILE, guile-2.0, have_guile=yes,
  PKG_CHECK_MODULES([GUILE], [guile-1.8], [have_guile=yes],
    [have_guile=no]))

fi