diff options
author | adam <adam> | 2006-10-03 21:06:25 +0000 |
---|---|---|
committer | adam <adam> | 2006-10-03 21:06:25 +0000 |
commit | d3c3ae1b330dc330fdecb1bb8ba5d334ab0dfc7c (patch) | |
tree | ee2b47d4900fbdf04602037ef5feccf5f4cb2fa6 /lang/ocaml/Makefile.common | |
parent | a33166343dc644c83043f38195a4163295156fd6 (diff) | |
download | pkgsrc-d3c3ae1b330dc330fdecb1bb8ba5d334ab0dfc7c.tar.gz |
Changes 3.09.3:
Bug fixes:
- ocamldoc: -using modtype constraint to filter module elements displayed in doc
- ocamldoc: error in merging of top dependencies of modules
- ocamldoc: -dot-colors has no effect
- ocamdloc: missing crossref in text from intro files
- compilers: segfault with recursive modules
- compilers: infinite loop when compiling objects
- compilers: bad error message when signature mismatch
- compilers: infinite loop with -rectypes
- compilers: contravariance bug in private rows
- compilers: unsafe cast with polymorphic exception
- native compiler: bad assembly code generated for AMD64
- native compiler: stack alignment problems on MacOSX/i386
- stdlib: crash in marshalling
- stdlib: crash when closing a channel twice
- stdlib: memory leak in Sys.readdir
- C interface: better definition of CAMLreturn
- otherlibs/unix: crash in gethostbyname
- tools: subtle problem with unset in makefile
- camlp4: install pa_o_fast.o
- camlp4: install more modules
New features:
- ocamldoc: name resolution in cross-referencing {!name}: if name is not
found, then it is searched in the parent module/class, and in the parent
of the parent, and so on until it is found.
- ocamldoc: new option -short-functors to use a short form to display
functors in html generator
- ocamlprof: added "-version" option
Diffstat (limited to 'lang/ocaml/Makefile.common')
-rw-r--r-- | lang/ocaml/Makefile.common | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/ocaml/Makefile.common b/lang/ocaml/Makefile.common index 22a54eb5086..525dcb5a949 100644 --- a/lang/ocaml/Makefile.common +++ b/lang/ocaml/Makefile.common @@ -1,6 +1,6 @@ -# $NetBSD: Makefile.common,v 1.16 2006/05/20 09:10:51 rillig Exp $ +# $NetBSD: Makefile.common,v 1.17 2006/10/03 21:06:25 adam Exp $ -DISTNAME= ocaml-3.09.2 +DISTNAME= ocaml-3.09.3 CATEGORIES= lang MASTER_SITES= http://caml.inria.fr/pub/distrib/ocaml-3.09/ EXTRACT_SUFX= .tar.bz2 @@ -19,6 +19,7 @@ CONFIGURE_ENV+= BDB_BUILTIN=${USE_BUILTIN.${BDB_TYPE}:Q} CONFIGURE_ARGS+= -prefix ${PREFIX:Q} CONFIGURE_ARGS+= -libs ${LDFLAGS:Q} CONFIGURE_ARGS+= -with-pthread +CONFIGURE_ARGS+= -host ${MACHINE_GNU_PLATFORM:Q} CPPFLAGS+= -DDB_DBM_HSEARCH .include "../../mk/bsd.prefs.mk" |