Author Topic: AM_PATH_GLIB problems on Debian.  (Read 6445 times)

Offline xjtuphy

  • Single posting newcomer
  • *
  • Posts: 5
AM_PATH_GLIB problems on Debian.
« on: March 28, 2006, 04:18:47 am »
My system is Debian testing.When I was building CB from svn,the "./bootstrap" gave the error msg:
Code
./bootstrap
/usr/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
yyl@tot:~/codeblock/trunk$ ./bootstrap

Then I look into /usr/share/aclocal/glib.m4,
changed
Code
AC_DEFUN(AM_PATH_GLIB
to
Code
AC_DEFUN([AM_PATH_GLIB]
Then
Code
./bootstrap
./configure --enable-contrib
make
make install
seems ok.