Although I performed ./configure for a application in SUSE9.0 for AMD64, the following errors came out. $ ./configure : creating libtool checking for glib-config... no checking for GLIB - version >= 1.2.2... no *** The glib-config script installed by GLIB could not be found *** If GLIB was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GLIB_CONFIG environment variable to the *** full path to glib-config. configure: error: *** GLIB >= 1.2.2 not installed - please install first *** $ Then, I investigated it. $ rpm -qa | grep glib- glib-1.2.10-237 glib-devel-1.2.10-237 glib-32bit-9.0-0 glib's version was 1.2.10-237. Why did it become an error?
On May 4, 2004 11:56 pm, eshsf wrote:
Although I performed ./configure for a application in SUSE9.0 for AMD64, the following errors came out.
$ ./configure
creating libtool checking for glib-config... no checking for GLIB - version >= 1.2.2... no *** The glib-config script installed by GLIB could not be found *** If GLIB was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GLIB_CONFIG environment variable to the *** full path to glib-config. configure: error: *** GLIB >= 1.2.2 not installed - please install first *** $
Try something like "export PATH=/opt/gnome/bin:$PATH" before running configure. I think the root user doesn't have the path set like that, but regular ones do by default...
On Wed, 05 May 2004 00:20:11 -0600 Sergei Klink <sklink@yandex.ru> wrote:
On May 4, 2004 11:56 pm, eshsf wrote:
Although I performed ./configure for a application in SUSE9.0 for AMD64, the following errors came out.
$ ./configure
creating libtool checking for glib-config... no checking for GLIB - version >= 1.2.2... no *** The glib-config script installed by GLIB could not be found *** If GLIB was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GLIB_CONFIG environment variable to the *** full path to glib-config. configure: error: *** GLIB >= 1.2.2 not installed - please install first *** $
Try something like "export PATH=/opt/gnome/bin:$PATH" before running configure. I think the root user doesn't have the path set like that, but regular ones do by default...
It succeeded. Thanks, eshsf
participants (2)
-
eshsf
-
Sergei Klink