On Sun, 02 Jan 2011 20:44:02 -0500 Jeff Garzik <jeff@xxxxxxxxxx> wrote: > > DB_ENV->dbremove: method not permitted before handle's open method > > cld[11548]: SIGSEGV > Are you compiling with db4 headers, but linking with db5? > Or vice versa? It turned out that Rawhide revved up the db5, so this band-aids it: commit 42d083416656e195baa79a924df0f11a3f0681c2 Author: Pete Zaitcev <zaitcev@xxxxxxxxx> Date: Sun Jan 2 20:28:39 2011 -0700 Accept db-5.1. diff --git a/configure.ac b/configure.ac index 9cfad23..abc9330 100644 --- a/configure.ac +++ b/configure.ac @@ -75,7 +75,8 @@ dnl AC_TYPE_PID_T dnl ----------------------------- dnl Checks for required libraries dnl ----------------------------- -AC_CHECK_LIB(db-5.0, db_create, DB4_LIBS=-ldb-5.0, +AC_CHECK_LIB(db-5.1, db_create, DB4_LIBS=-ldb-5.1, + AC_CHECK_LIB(db-5.0, db_create, DB4_LIBS=-ldb-5.0, AC_CHECK_LIB(db-4.9, db_create, DB4_LIBS=-ldb-4.9, AC_CHECK_LIB(db-4.8, db_create, DB4_LIBS=-ldb-4.8, AC_CHECK_LIB(db-4.7, db_create, DB4_LIBS=-ldb-4.7, @@ -83,7 +84,7 @@ AC_CHECK_LIB(db-5.0, db_create, DB4_LIBS=-ldb-5.0, AC_CHECK_LIB(db-4.5, db_create, DB4_LIBS=-ldb-4.5, AC_CHECK_LIB(db-4.4, db_create, DB4_LIBS=-ldb-4.4, AC_CHECK_LIB(db-4.3, db_create, DB4_LIBS=-ldb-4.3, - [AC_MSG_ERROR([Missing required libdb 4.x])])))))))) + [AC_MSG_ERROR([Missing required libdb 4.x])]))))))))) AC_CHECK_LIB(event, event_base_new, EVENT_LIBS=-levent, [AC_MSG_ERROR([Missing required libevent])]) AC_CHECK_LIB(crypto, MD5_Init, CRYPTO_LIBS=-lcrypto) This needs to stop eventually, just don't know how. -- Pete -- To unsubscribe from this list: send the line "unsubscribe hail-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html