Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/security/lua-ossl lua-ossl: Don't try to include sys/e...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9496310a077f
branches:  trunk
changeset: 435674:9496310a077f
user:      nia <nia%pkgsrc.org@localhost>
date:      Sat Jul 11 15:18:24 2020 +0000

description:
lua-ossl: Don't try to include sys/epoll.h on SunOS

diffstat:

 security/lua-ossl/distinfo                     |   3 ++-
 security/lua-ossl/patches/patch-config.h.guess |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (31 lines):

diff -r 3d3fb60ae8ff -r 9496310a077f security/lua-ossl/distinfo
--- a/security/lua-ossl/distinfo        Sat Jul 11 15:14:29 2020 +0000
+++ b/security/lua-ossl/distinfo        Sat Jul 11 15:18:24 2020 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2020/07/10 09:12:51 nia Exp $
+$NetBSD: distinfo,v 1.3 2020/07/11 15:18:24 nia Exp $
 
 SHA1 (luaossl-20200709.tar.gz) = f967f640869f863a421886bf8d9e2625e72302f3
 RMD160 (luaossl-20200709.tar.gz) = 0a396bc54983f028018f0726b51a35ff0669b6ab
 SHA512 (luaossl-20200709.tar.gz) = 324175f65e9d292ecb1343cfa9e111f1fd17f15e67037bd705d3db95d32b859c039a6e70620d649f446a8e7043a125a75c64de1714f0fe18e077fb9c017bea34
 Size (luaossl-20200709.tar.gz) = 352960 bytes
+SHA1 (patch-config.h.guess) = b25ce37a141bbb28921ffac8324af496b073817b
diff -r 3d3fb60ae8ff -r 9496310a077f security/lua-ossl/patches/patch-config.h.guess
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/lua-ossl/patches/patch-config.h.guess    Sat Jul 11 15:18:24 2020 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-config.h.guess,v 1.1 2020/07/11 15:18:24 nia Exp $
+
+Don't try to include sys/epoll.h on SunOS, since this breaks on SmartOS.
+
+--- config.h.guess.orig        2020-07-09 13:10:19.000000000 +0000
++++ config.h.guess
+@@ -472,7 +472,7 @@
+ #define HAVE_SYS_AUXV_H ag_test_include(<sys/auxv.h>, HAVE_SYS_AUXV_H_)
+ #endif
+ 
+-#ifndef HAVE_SYS_EPOLL_H
++#if !defined(HAVE_SYS_EPOLL_H) && !defined(__sun)
+ #define HAVE_SYS_EPOLL_H ag_test_include(<sys/epoll.h>, __linux__)
+ #endif
+ 



Home | Main Index | Thread Index | Old Index