Compilation RRDTOOL配置脚本未拾取glib-2.0

Compilation RRDTOOL配置脚本未拾取glib-2.0,compilation,glib,rrdtool,rrd,Compilation,Glib,Rrdtool,Rrd,我正试图在CentOS 4.1的机器上构建rrdtool-1.4.8,当我运行配置脚本时,尽管添加了-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,/myp

我正试图在CentOS 4.1的机器上构建rrdtool-1.4.8,当我运行配置脚本时,尽管添加了
-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是错误的版本吗?我是否应该编译一个较新的并链接它

如果其他人有这个问题,glib-2.0的版本已经过时了

要解决此问题,请将glib-2.0更新到更新的版本,然后运行配置脚本

$./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