diff options
author | wiz <wiz@pkgsrc.org> | 2012-08-20 08:11:58 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-08-20 08:11:58 +0000 |
commit | 7270fe0a39f8cfe0447e1b11e76194c19106d250 (patch) | |
tree | 4f6d5024c1360eeff5b11bef7a93deaa888c4fdf /net/ocamlnet/Makefile | |
parent | b27c156efe6ceb66b0f7dae3a610a080e7743537 (diff) | |
download | pkgsrc-7270fe0a39f8cfe0447e1b11e76194c19106d250.tar.gz |
Update to 3.6, provided by maintainer Jaap Boender in PR 46817.
This is an update of ocamlnet to its newest version, 3.6. Changes are:
* Netsys_sem: a new abstraction for emulating anonymous
semaphores on systems that only provide named semaphores,
like OS X. All users of semaphores inside Ocamlnet now
base on Netsys_sem.
* reimplementing Netstring_str for the case the Str engine
is used. It is now thread-safe without having to use
mutexes.
* The default is now -disable-pcre
* The module Netstring_pcre has been moved to a library of its
own, namely netstring-pcre. It is only installed if -enable-pcre
* Nethttp.Header.best_media_type: improved
(patch by Christopher Zimmemann)
* Netsys_mem.alloc_memory_pages: one can now mark the memory
pages as executable
* src/netsys/configure: disabling POSIX semaphore check
for win32
* Fixes for OpenBSD (by Christopher Zimmermann)
* Netcgi connectors (SCGI, AJP, FCGI): unifying the ~sockaddr
and ~port arguments. ~port now also assumes a loopback binding.
(Suggested by Christopher Zimmermann).
* Allowing posix_spawn again for MacOS. It turns out the
number of file actions is limited. If we are above the
limit, posix_spawn is not used.
* Ssl_exts: adding function for returning the fingerprint of
a certificate
* Https_client: new verify callback for additional certificate
checks
Diffstat (limited to 'net/ocamlnet/Makefile')
-rw-r--r-- | net/ocamlnet/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ocamlnet/Makefile b/net/ocamlnet/Makefile index 20a168d91ec..7dc90186c4b 100644 --- a/net/ocamlnet/Makefile +++ b/net/ocamlnet/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2012/07/06 09:29:14 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2012/08/20 08:11:58 wiz Exp $ # -DISTNAME= ocamlnet-3.5.1 +DISTNAME= ocamlnet-3.6 CATEGORIES= net MASTER_SITES= http://download.camlcity.org/download/ @@ -17,7 +17,7 @@ DEPENDS+= ocaml-findlib-[0-9]*:../../devel/ocaml-findlib HAS_CONFIGURE= yes CONFIGURE_ARGS+= -without-nethttpd -without-rpc-auth-dh -disable-gtk2 \ - -disable-tcl -disable-apache + -disable-tcl -disable-apache -enable-pcre USE_TOOLS+= gmake BUILD_TARGET= all |