diff options
author | danfe <danfe@FreeBSD.org> | 2019-06-24 18:14:57 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2019-06-24 18:14:57 +0800 |
commit | aae3667ef838e7d6a73e61ecd9309eb467d2fea9 (patch) | |
tree | c6799f414d81b83df0e1640dde540befcd389da6 /net-p2p | |
parent | 8b44608f3f2aeace07c47b71ab55db2290dfe576 (diff) | |
download | freebsd-ports-gnome-aae3667ef838e7d6a73e61ecd9309eb467d2fea9.tar.gz freebsd-ports-gnome-aae3667ef838e7d6a73e61ecd9309eb467d2fea9.tar.zst freebsd-ports-gnome-aae3667ef838e7d6a73e61ecd9309eb467d2fea9.zip |
Update OCaml to version 4.05.0 (this is the last version where strings
are unsafe by default, which is the main motivation why it was picked,
but not the very latest one) and synchronize the rest of the stack and
dependent ports with it, particularly:
- Update `devel/ocaml-ocamlbuild' to version 0.14.0 and unbreak,
register build dependency on all ports that require it (should
be part of USE_OCAML, but we do not want to make any Mk-related
changes the for time being)
- Update `devel/ocaml-camlp4' to version 4.05+2
- Update `devel/ocaml-camlp5' to version 7.07 (the project had
moved to GitHub)
- Mark `devel/ocaml-deriving-ocsigen' as BROKEN for now, it is
very outdated and requires quite a lot of work
- Update `x11-toolkits/ocaml-labltk' to version 8.06.3
PR: 218333
Exp-run by: antoine
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/mldonkey/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net-p2p/mldonkey/Makefile b/net-p2p/mldonkey/Makefile index 179eb9460eb7..d1d7d5804f99 100644 --- a/net-p2p/mldonkey/Makefile +++ b/net-p2p/mldonkey/Makefile @@ -117,10 +117,12 @@ post-patch: ${WRKSRC}/src/daemon/common/commonOptions.ml \ ${WRKSRC}/src/networks/donkey/donkeyServers.ml @${REINPLACE_CMD} \ - -e 's/[u(]int32/&_t/' ${WRKSRC}/src/utils/cdk/zlibstubs.c + -e 's/[u(]int32/&_t/' ${WRKSRC}/src/utils/cdk/zlibstubs.c \ + ${WRKSRC}/src/utils/cdk/gdstubs.c @${REINPLACE_CMD} \ -e 's/int64/&_t/' ${WRKSRC}/src/config/unix/os_stubs_c.c \ - ${WRKSRC}/src/utils/lib/os_stubs.h + ${WRKSRC}/src/utils/lib/os_stubs.h \ + ${WRKSRC}/src/utils/lib/fst_hash.c do-install: .if ${PORT_OPTIONS:MCORE} |