We have just applied the patch below in Ubuntu, this converts openhpi to use "glib.h" directly instead of the underlying header files. This fixes FTBS with newer glib versions:
* src/lock.c: glib no longer permits include of individual headers, switch to including "glib.h". (Closes: #665590). Please consider for Debian. -apw --- openhpi-2.14.1.orig/src/lock.c +++ openhpi-2.14.1/src/lock.c @@ -20,7 +20,7 @@ /* multi-threading support, use Posix mutex for data access */ /* initialize mutex used for data locking */ -#include <glib/gthread.h> +#include <glib.h> GStaticRecMutex oh_main_lock = G_STATIC_REC_MUTEX_INIT; -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

