diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2013-04-06 00:28:39 +0200 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2013-04-07 15:32:39 +0200 |
commit | 4f7d8d7ee4c3a2f92cd12d7e1e2a03725f406012 (patch) | |
tree | c7e38e4be4068ccc6824ade7a87037154302f2d6 /gnu/packages/gdbm.scm | |
parent | 0f41c26f9b9c981d5d5ecaa8c2ccda4f4c6ab147 (diff) | |
download | guix-4f7d8d7ee4c3a2f92cd12d7e1e2a03725f406012.tar guix-4f7d8d7ee4c3a2f92cd12d7e1e2a03725f406012.tar.gz |
gnu: Python: fix the compilation of some modules from the standard library.
This commit enables the bz2, dbm, readline, ssl and zlib modules.
* gnu/packages/gdbm.scm: Enable the compatibility mode.
* gnu/packages/python.scm: Enable a few modules from the standard library.
* gnu/packages/patches/python-fix-dbm.patch: New file.
* Makefile.am: Add it.
Diffstat (limited to 'gnu/packages/gdbm.scm')
-rw-r--r-- | gnu/packages/gdbm.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/gdbm.scm b/gnu/packages/gdbm.scm index 588b732b02..76733dba65 100644 --- a/gnu/packages/gdbm.scm +++ b/gnu/packages/gdbm.scm @@ -34,6 +34,7 @@ (sha256 (base32 "0h9lfzdjc2yl849y0byg51h6xfjg0y7vg9jnsw3gpfwlbd617y13")))) + (arguments `(#:configure-flags '("--enable-libgdbm-compat"))) (build-system gnu-build-system) (home-page "http://www.gnu.org/software/gdbm/") (synopsis "GNU dbm key/value database library") |