bugfix update to 2.48.4

This commit is contained in:
giovanni 2016-06-27 13:34:49 +00:00
parent 34f8a991ac
commit 89f6e5f761
3 changed files with 6 additions and 17 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.9 2015/01/09 10:10:43 giovanni Exp $
# $OpenBSD: Makefile,v 1.10 2016/06/27 13:34:49 giovanni Exp $
COMMENT= multi-platform file synchronization tool
CATEGORIES= net
V= 2.48.3
V= 2.48.4
DISTNAME= unison-${V}
MASTER_SITES= ${HOMEPAGE}download/releases/stable/
@ -37,7 +37,6 @@ WANTLIB += Xrandr Xrender fontconfig freetype
WANTLIB += gio-2.0 glib-2.0 gobject-2.0 pango-1.0
WANTLIB += pangocairo-1.0 pangoft2-1.0 gdk_pixbuf-2.0
WANTLIB += gdk-x11-2.0 gtk-x11-2.0 atk-1.0 cairo z
WANTLIB += pthread
.endif
# CFLAGS _must_ be empty. This is an OCaml compiler.
@ -53,6 +52,8 @@ ALL_TARGET= unison
DOCS= BUGS.txt NEWS README
WRKDIST= ${WRKDIR}/src
# Avoid the nightmare of their Makefile install target.
# Do not use INSTALL_PROGRAM, as the bytecode version must not be stripped!
do-install:

View File

@ -1,2 +1,2 @@
SHA256 (unison-2.48.3.tar.gz) = ppX51F6V09nD8l/L8YkfXrIOWqUXCfgbeFog4UJwt+4=
SIZE (unison-2.48.3.tar.gz) = 1172532
SHA256 (unison-2.48.4.tar.gz) = MKpTzWcdZzWAEE8Evjz4GsHiCi6LqvcnRJhznVnpneg=
SIZE (unison-2.48.4.tar.gz) = 1200861

View File

@ -1,12 +0,0 @@
--- system/system_generic.ml.orig Thu May 19 15:39:50 2016
+++ system/system_generic.ml Thu May 19 15:40:43 2016
@@ -57,7 +57,8 @@
let readdir = Unix.readdir
let closedir = Unix.closedir
let readlink = Unix.readlink
-let symlink = Unix.symlink
+(* BCP 5/16: Eta-expand for backward compatibility with OCaml <=4.02 *)
+let symlink s1 s2 = Unix.symlink s1 s2
let chdir = Sys.chdir
let getcwd = Sys.getcwd