我试图在CentOS 4.1的机器上构建rrdtool-1.4.8,当我运行配置脚本时,尽管将-I/usr/include/glib-2.0
和-I/usr/lib64/glib-2.0/include
添加到CPPFLAGS:
# ./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是错误的版本吗?我应该编译一个最新的并链接它吗?
如果有人遇到这个问题,说明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
configure脚本运行成功后,调用make
对src进行编译。