natuerlich hab ich glib 2 installiert(source uebersetzt, und mit make install installiert)
hier nen auszug aus meiner config.log
@ Smellycat : wo bekomme ich dann das package fuer solaris 9 ?
int
| main ()
| {
| int major, minor, micro;
| char *tmp_version;
|
| system ("touch conf.glibtest");
|
| /* HP/UX 9 (%@#!) writes to sscanf strings */
| tmp_version = g_strdup("2.0.0");
| if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
| printf("%s, bad version string\n", "2.0.0");
| exit(1);
| }
|
| if ((glib_major_version != 2) ||
| (glib_minor_version != 2) ||
| (glib_micro_version != 2))
| {
| printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n",
| 2, 2, 2,
| glib_major_version, glib_minor_version, glib_micro_version);
| printf ("*** was found! If pkg-config was correct, then it is best\n");
| printf ("*** to remove the old version of GLib. You may also be able to fix the error\n");
| printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
| printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
| printf("*** required on your system.\n");
| printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
| printf("*** to point to the correct configuration files\n");
| }
| else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
| (glib_minor_version != GLIB_MINOR_VERSION) ||
| (glib_micro_version != GLIB_MICRO_VERSION))
| {
| printf("*** GLIB header files (version %d.%d.%d) do not match\n",
| GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
| printf("*** library (version %d.%d.%d)\n",
| glib_major_version, glib_minor_version, glib_micro_version);
| }
| else
| {
| if ((glib_major_version > major) ||
| ((glib_major_version == major) && (glib_minor_version > minor)) ||
| ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
| {
| return 0;
| }
| else
| {
| printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n",
| glib_major_version, glib_minor_version, glib_micro_version);
| printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n",
| major, minor, micro);
| printf("*** GLIB is always available from
ftp://ftp.gtk.org.\n");
| printf("***\n");
| printf("*** If you have already installed a sufficiently new version, this error\n");
| printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
| printf("*** being found. The easiest way to fix this is to remove the old version\n");
| printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n");
| printf("*** correct copy of pkg-config. (In this case, you will have to\n");
| printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
| printf("*** so that the correct libraries are found at run-time))\n");
| }
| }
| return 1;
| }
|
configure:9742: result: no
configure:9776: gcc -o conftest -g -O2 -Wall -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include conftest.c -L/usr/local/lib -lgobject-2.0 -l
gmodule-2.0 -ldl -lglib-2.0 >&5
configure:9779: $? = 0
configure:9782: test -s conftest
configure:9785: $? = 0
configure:9815: error:
*** GLIB 2.0.0 or better is required. The latest version of
*** GLIB is always available from
ftp://ftp.gtk.org/.