Chinaunix首页 | 论坛 | 博客
  • 博客访问: 537194
  • 博文数量: 146
  • 博客积分: 5030
  • 博客等级: 大校
  • 技术积分: 1820
  • 用 户 组: 普通用户
  • 注册时间: 2007-07-16 20:57
文章分类

全部博文(146)

文章存档

2011年(1)

2010年(4)

2009年(30)

2008年(111)

我的朋友

分类: 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下做个链接
阅读(767) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~