分类: LINUX
2008-07-10 17:31:18
问题:
./configure --with-opal-dir=/usr/local --with-pwlib-dir=/usr/local --disable-avahi --disable-doc
提示:
configure: error: conditional "HAVE_GNOME_DOC_UTILS" was never
defined. Usually this means the macro was only invoked conditionally.
解决:
更改configure.in文件,找到下面这段
if test ${enable_gnome} = yes && test ${enable_doc} = yes; then
GNOME_DOC_INIT
else
ENABLE_SK_TRUE="#"
ENABLE_SK_FALSE=""
fi
改成下面这样子
if test ${enable_gnome} = yes && test ${enable_doc} = yes; then
GNOME_DOC_INIT
else
dnl Do not care if GDU is not found
GNOME_DOC_INIT(,,[:])
fi
最后autoconf一下就ok了
ekiga默认要找的几个库放在/usr/lib下,如果有找不到的库就locate一下,在/usr/lib下做个链接