我正在尝试在使用CentOS 4.1的计算机上构建rrdtool-1.4.8,并且当我运行configure脚本时,尽管向CPPFLAGS添加了-I/usr/include/glib-2.0
和-I/usr/lib64/glib-2.0/include
:
# ./configure --disable-tcl --disable-python --disable-rrd_graph CFLAGS="-O3 -fPIC" \
LIBS="-lm -lwrap -lglib-2.0" LDFLAGS="-Wl,--rpath -Wl,/mypath/lib/libxml2/lib" \
CPPFLAGS="-I/mypath/lib/libxml2/include/libxml2/libxml -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include" \
PKG_CONFIG_PATH=/mypath/lib/libxml2/lib/pkgconfig
抛出以下错误:
Find 3rd-Party Libraries
checking dbi/dbi.h usability... no
checking dbi/dbi.h presence... no
checking for dbi/dbi.h... no
checking tcpd.h usability... yes
checking tcpd.h presence... yes
checking for tcpd.h... yes
checking for hosts_access... yes
checking for glib_check_version in -lglib-2.0... no
checking for pkg-config... pkg-config
checking for glib_check_version in -lglib-2.0... no
configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of glib-2.0. Check config.log for hints on why
this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
so that compiler and the linker can find libglib-2.0 and its header files. If
you have not installed glib-2.0, you can get it either from its original home on
ftp://ftp.gtk.org/pub/glib/2.28/
You can find also find an archive copy on
http://oss.oetiker.ch/rrdtool/pub/libs
The last tested version of glib-2.0 is 2.28.7.
LIBS=-lm -lwrap -lglib-2.0 -lglib-2.0
LDFLAGS=-Wl,--rpath -Wl,/mypath/lib/libxml2/lib
CPPFLAGS=-I/mypath/lib/libxml2/include/libxml2/libxml -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include
----------------------------------------------------------------------------
checking for xmlParseFile in -lxml2... no
checking for pkg-config... (cached) pkg-config
checking for xmlParseFile in -lxml2... yes
checking libxml/parser.h usability... yes
checking libxml/parser.h presence... yes
checking for libxml/parser.h... yes
configure: error: Please fix the library issues listed above and try again.
但是已经安装了glib2-devel软件包:
# yum list installed | grep glib2
glib2.x86_64 2.4.7-1 installed
glib2.i386 2.4.7-1 installed
glib2-devel.x86_64 2.4.7-1 installed
我意识到我可能遗漏了一些非常微不足道的东西,但我做错了什么?
glib-2.0是错误的版本吗?我应该编译一个更新的并链接它吗?
答案 0 :(得分:1)
如果其他人有这个问题,glib-2.0的版本已经过时了。
要解决此问题,请将glib-2.0更新为更新版本,然后运行configure脚本。
$./configure --disable-tcl --disable-python \
CFLAGS="-O3 -fPIC" LIBS="-lm -lwrap" \
PKG_CONFIG_PATH=/mypath/lib/libxml2/lib/pkgconfig:/mypath2/glib-2.0/lib/pkgconfig \
--prefix=/mypath3 \
配置脚本成功运行后,调用make
编译src。