]> git.pld-linux.org Git - packages/ocaml.git/blame - ocaml-db3.patch
- updated to 3.07beta2
[packages/ocaml.git] / ocaml-db3.patch
CommitLineData
e15a2426
MM
1diff -ur ocaml-3.07beta2/configure ocaml-3.07beta2-/configure
2--- ocaml-3.07beta2/configure 2003-08-20 17:10:58.000000000 +0200
3+++ ocaml-3.07beta2-/configure 2003-08-26 11:12:29.000000000 +0200
4@@ -1225,49 +1225,12 @@
b9a9b48b
MM
5
6 # See if we can compile the dbm library
7
8-dbm_include="not found"
9-dbm_link="not found"
e15a2426
MM
10 use_gdbm_ndbm=no
11-
b9a9b48b
MM
12-for dir in /usr/include /usr/include/db1 /usr/include/gdbm; do
13- if test -f $dir/ndbm.h; then
14- dbm_include=$dir
15- if sh ./hasgot dbm_open; then
16- dbm_link=""
17- elif sh ./hasgot -lndbm dbm_open; then
18- dbm_link="-lndbm"
19- elif sh ./hasgot -ldb1 dbm_open; then
20- dbm_link="-ldb1"
21- elif sh ./hasgot -lgdbm dbm_open; then
22- dbm_link="-lgdbm"
b9a9b48b
MM
23- fi
24- break
25- fi
e15a2426
MM
26- if test -f $dir/gdbm-ndbm.h; then
27- dbm_include=$dir
28- use_gdbm_ndbm=yes
29- if sh ./hasgot -lgdbm_compat -lgdbm dbm_open; then
30- dbm_link="-lgdbm_compat -lgdbm"
31- fi
32- break
33- fi
b9a9b48b 34-done
e15a2426 35-if test "$dbm_include" = "not found" || test "$dbm_link" = "not found"; then
b9a9b48b
MM
36- echo "NDBM not found, the \"dbm\" library will not be supported."
37-else
38- echo "NDBM found (in $dbm_include)"
39- if test "$dbm_include" = "/usr/include"; then
40- dbm_include=""
41- else
42- dbm_include="-I$dbm_include"
43- fi
44- echo "DBM_INCLUDES=$dbm_include" >> Makefile
45- echo "DBM_LINK=$dbm_link" >> Makefile
e15a2426
MM
46- if test "$use_gdbm_ndbm" = "yes"; then
47- echo "#define DBM_USES_GDBM_NDBM" >> s.h
48- fi
b9a9b48b
MM
49- otherlibraries="$otherlibraries dbm"
50-fi
51+dbm_include=""
52+dbm_link="-ldb"
53+echo "DBM_INCLUDES=$dbm_include" >> Makefile
54+echo "DBM_LINK=$dbm_link" >> Makefile
55+otherlibraries="$otherlibraries dbm"
56
57 # Look for tcl/tk
58
e15a2426
MM
59diff -ur ocaml-3.07beta2/otherlibs/dbm/cldbm.c ocaml-3.07beta2-/otherlibs/dbm/cldbm.c
60--- ocaml-3.07beta2/otherlibs/dbm/cldbm.c 2003-07-08 15:50:31.000000000 +0200
61+++ ocaml-3.07beta2-/otherlibs/dbm/cldbm.c 2003-08-26 11:11:19.000000000 +0200
62@@ -24,7 +24,8 @@
63 #ifdef DBM_USES_GDBM_NDBM
64 #include <gdbm-ndbm.h>
65 #else
66-#include <ndbm.h>
67+#define DB_DBM_HSEARCH 1
68+#include <db.h>
69 #endif
70
71 /* Quite close to sys_open_flags, but we need RDWR */
This page took 0.222744 seconds and 4 git commands to generate.