pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/libev



Module Name:    pkgsrc
Committed By:   wiedi
Date:           Wed Sep 11 21:35:51 UTC 2019

Modified Files:
        pkgsrc/devel/libev: Makefile distinfo
Added Files:
        pkgsrc/devel/libev/patches: patch-ev__port.c

Log Message:
libev: fix build on SunOS


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/libev/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/libev/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/libev/patches/patch-ev__port.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/libev/Makefile
diff -u pkgsrc/devel/libev/Makefile:1.18 pkgsrc/devel/libev/Makefile:1.19
--- pkgsrc/devel/libev/Makefile:1.18    Sat Jul 20 21:51:11 2019
+++ pkgsrc/devel/libev/Makefile Wed Sep 11 21:35:50 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2019/07/20 21:51:11 wiz Exp $
+# $NetBSD: Makefile,v 1.19 2019/09/11 21:35:50 wiedi Exp $
 
 DISTNAME=      libev-4.27
 CATEGORIES=    devel
@@ -15,5 +15,6 @@ GNU_CONFIGURE_LIBSUBDIR=ev
 CONFIGURE_ARGS+=       --includedir=${PREFIX}/include/ev
 # Explicitly disable inotify on SunOS, assumes Linux statfs.
 CONFIGURE_ENV.SunOS+=  ac_cv_header_sys_inotify_h=no
+CONFIGURE_ENV.SunOS+=  ac_cv_header_sys_epoll_h=no
 
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/libev/distinfo
diff -u pkgsrc/devel/libev/distinfo:1.14 pkgsrc/devel/libev/distinfo:1.15
--- pkgsrc/devel/libev/distinfo:1.14    Sat Jul 20 21:51:11 2019
+++ pkgsrc/devel/libev/distinfo Wed Sep 11 21:35:50 2019
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.14 2019/07/20 21:51:11 wiz Exp $
+$NetBSD: distinfo,v 1.15 2019/09/11 21:35:50 wiedi Exp $
 
 SHA1 (libev-4.27.tar.gz) = b67aff18f6f1ffec4422e188c98d9fe458c5ed0b
 RMD160 (libev-4.27.tar.gz) = 6c0f0570df92644a1fce7d859428e80e409d2c86
 SHA512 (libev-4.27.tar.gz) = 18fbac15c3a24b2efcd547d98d423fe59a1684cd3afe7ff25a3da54d8df3e11f351df455657d830df93366853f74d584f6e47a7c9ffaba84aa586957bf39ea82
 Size (libev-4.27.tar.gz) = 556658 bytes
+SHA1 (patch-ev__port.c) = c8093229af41dcc9ae4a3a45994a3f3fd596ff3f

Added files:

Index: pkgsrc/devel/libev/patches/patch-ev__port.c
diff -u /dev/null pkgsrc/devel/libev/patches/patch-ev__port.c:1.1
--- /dev/null   Wed Sep 11 21:35:51 2019
+++ pkgsrc/devel/libev/patches/patch-ev__port.c Wed Sep 11 21:35:51 2019
@@ -0,0 +1,14 @@
+$NetBSD: patch-ev__port.c,v 1.1 2019/09/11 21:35:51 wiedi Exp $
+
+fix syntax error
+--- ev_port.c.orig     2019-06-25 23:42:03.000000000 +0000
++++ ev_port.c
+@@ -70,7 +70,7 @@ port_associate_and_check (EV_P_ int fd,
+     {
+       if (errno == EBADFD)
+         {
+-          assert (("libev: port_associate found invalid fd", errno != EBADFD);
++          assert (("libev: port_associate found invalid fd", errno != EBADFD));
+           fd_kill (EV_A_ fd);
+         }
+       else



Home | Main Index | Thread Index | Old Index