Skip to content

Commit

Permalink
Apply patches from OPAM package for v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierleroy committed Dec 10, 2016
1 parent 52c6bbc commit c1d9eb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
Release 1.1 (2016-12-10)
- Apply patches from OPAM package for 1.0

Release 1.0 (2011-11-22)
- First public release, based on the sources taken from OCaml 3.12.1
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ libcamldbm.$(A): cldbm.$(O)
$(OCAMLOPT) -c $(COMPFLAGS) $<

.c.$(O):
$(OCAMLC) -c -ccopt "$(DBM_INCLUDE)" -ccopt "$(DBM_DEFINES)" $<
$(OCAMLC) -c -ccopt "$(DBM_INCLUDES)" -ccopt "$(DBM_DEFINES)" $<

depend:
$(OCAMLDEP) *.ml *.mli > .depend

install::
if test -f dllcamldbm.$(SO); then cp dllcamldbm.$(SO) $(STUBLIBDIR)/; fi
if test -f dllcamldbm.$(SO); then mkdir $(STUBLIBDIR) || echo Ok; cp dllcamldbm.$(SO) $(STUBLIBDIR)/; fi
cp libcamldbm.$(A) $(LIBDIR)/
cd $(LIBDIR) && ranlib libcamldbm.$(A)
cp dbm.cma dbm.cmxa dbm.cmi dbm.mli $(LIBDIR)/
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ hasgot() {
${CC:-cc} -I$1 -o hasgot.exe hasgot.c $3 $4
res=$?
rm -f hasgot.c hasgot.exe
return $?
return $res
}

dbm_include="not found"
Expand Down

0 comments on commit c1d9eb9

Please sign in to comment.