This patch allows the dbm module to be built using the compatibility mode of gdbm. It will not be needed any more with Python 2.7.4. --- setup.py 2013-04-06 00:53:37.000000000 +0200 +++ setup.py.new 2013-04-06 19:55:05.000000000 +0200 @@ -1158,10 +1158,14 @@ for cand in dbm_order: if cand == "ndbm": if find_file("ndbm.h", inc_dirs, []) is not None: - # Some systems have -lndbm, others don't + # Some systems have -lndbm, some have -lgdbm_compat, + # others have no particular linker flags. if self.compiler.find_library_file(lib_dirs, 'ndbm'): ndbm_libs = ['ndbm'] + elif self.compiler.find_library_file(lib_dirs, + 'gdbm_compat'): + ndbm_libs = ['gdbm_compat'] else: ndbm_libs = [] print "building dbm using ndbm" 485e7f53f8f5e6449b9a35aa9ca2'>refslogtreecommitdiff
path: root/gnu/packages/julia-jll.scm
AgeCommit message (Expand)Author
2024-02-05gnu: mbedtls-apache: Rename to mbedtls-lts.Hilton Chain
2023-09-28gnu: julia-wcslib-jll: Downgrade wcslib version.Simon Tournier
2023-09-15gnu: julia-freetype2-jll: Update to 2.13.1+0.Efraim Flashner
2023-09-04gnu: julia-gr-jll: Update to 0.69.1+0.Efraim Flashner
2023-02-15gnu: Add julia-wcs-jll.Sharlatan Hellseher
2023-02-15gnu: Add julia-erfa-jll.Sharlatan Hellseher
2023-02-08gnu: Add julia-cfitsio-jll.Sharlatan Hellseher
2022-12-12gnu: ffmpeg: Promote version 5 to the default.Marius Bakke