andreas pushed a commit to branch master
in repository guix.
commit e4c3e2cd439f6a330fbd459097a1b79be41b4e56
Author: Andreas Enge <[email protected]>
Date: Fri Sep 11 22:32:32 2015 +0200
gnu: bdb: Add configure flag to fix C++ header file.
* gnu/packages/databases.scm (bdb): Build with "--enable-cxx", which causes
HAVE_CXX_STDHEADERS to be defined in db_cxx.h in the output.
---
gnu/packages/databases.scm | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index e978c54..38ff650 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <[email protected]>
-;;; Copyright © 2012, 2014 Andreas Enge <[email protected]>
+;;; Copyright © 2012, 2014, 2015 Andreas Enge <[email protected]>
;;; Copyright © 2013 Cyril Roelandt <[email protected]>
;;; Copyright © 2014 David Thompson <[email protected]>
;;; Copyright © 2014, 2015 Mark H Weaver <[email protected]>
@@ -87,7 +87,12 @@
;; The compatibility mode is needed by some packages,
;; notably iproute2.
- "--enable-compat185"))))
+ "--enable-compat185"
+
+ ;; The following flag is needed so that the inclusion
+ ;; of db_cxx.h into C++ files works; it leads to
+ ;; HAVE_CXX_STDHEADERS being defined in db_cxx.h.
+ "--enable-cxx"))))
%standard-phases)))
(synopsis "Berkeley database")
(description