During the build it complained about the missing glib.h file. I had to do this:
box770 g-wrap-1.9.6 # diff -u configure.ac.orig configure.ac --- configure.ac.orig 2006-03-08 14:49:54.000000000 +0200 +++ configure.ac 2006-03-08 15:13:05.000000000 +0200 @@ -95,7 +95,7 @@ AM_CONDITIONAL(HAVE_SRFI_35, test "$HAVE_SRFI_35" = yes) dnl Check for optional libraries -PKG_CHECK_MODULES(GLIB, glib, [have_glib=yes], [have_glib=no]) +PKG_CHECK_MODULES(GLIB, glib-2.0, [have_glib=yes], [have_glib=no]) AM_CONDITIONAL(HAVE_GLIB, test "$have_glib" = yes) dnl Check for compiler flags and warnings. This should be last, since -- Priit Laes _______________________________________________ g-wrap-dev mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/g-wrap-dev
