From: SourceForge.net <no...@so...> - 2012-09-27 20:03:07
|
Patches item #3572516, was opened at 2012-09-27 13:03 Message generated for change (Tracker Item Submitted) made by jjames You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=301355&aid=3572516&group_id=1355 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Jerry James (jjames) Assigned to: Nobody/Anonymous (nobody) Summary: Berkeley db module configure error Initial Comment: The berkeley-db module's configure script adds -Werror to CFLAGS. With recent versions of GCC, this code triggers a warning (and therefore an error) about the use of an uninitialized variable: DB_ENV dbe; dbe.set_errcall(&dbe,&my_callback); There are multiple possible fixes. I chose to also add -Wno-uninitialized to CFLAGS in this patch. Not adding -Werror is another option. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=301355&aid=3572516&group_id=1355 |