pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/qore



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Mon May  9 12:51:04 UTC 2022

Modified Files:
        pkgsrc/lang/qore: distinfo
Added Files:
        pkgsrc/lang/qore/patches: patch-lib_ql__lib.qpp

Log Message:
qore: Avoid Linux-specific AF_* interfaces.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/qore/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/lang/qore/patches/patch-lib_ql__lib.qpp

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

Modified files:

Index: pkgsrc/lang/qore/distinfo
diff -u pkgsrc/lang/qore/distinfo:1.15 pkgsrc/lang/qore/distinfo:1.16
--- pkgsrc/lang/qore/distinfo:1.15      Thu Jan 27 17:39:45 2022
+++ pkgsrc/lang/qore/distinfo   Mon May  9 12:51:04 2022
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.15 2022/01/27 17:39:45 nros Exp $
+$NetBSD: distinfo,v 1.16 2022/05/09 12:51:04 jperkin Exp $
 
 BLAKE2s (qore-1.2.tar.bz2) = 5346943b0712cbbb478b3a713499b50a65d1481914f8a1976a2d964db11ac60f
 SHA512 (qore-1.2.tar.bz2) = 2e4b9ca981d186777db231a6edb72393a57e03de54417025a734988eb0386f63fdfd2277eb9f65117832f2a56a66721665b7d934f11428219afbb36948df4dc3
 Size (qore-1.2.tar.bz2) = 45399125 bytes
 SHA1 (patch-lib_StatementBlock.cpp) = 90630317a5cee4e089cec51c05e5d895aa8b75f7
+SHA1 (patch-lib_ql__lib.qpp) = a94737d5ed7c930ddc667c5e8be45cd1095d5a4a

Added files:

Index: pkgsrc/lang/qore/patches/patch-lib_ql__lib.qpp
diff -u /dev/null pkgsrc/lang/qore/patches/patch-lib_ql__lib.qpp:1.1
--- /dev/null   Mon May  9 12:51:04 2022
+++ pkgsrc/lang/qore/patches/patch-lib_ql__lib.qpp      Mon May  9 12:51:04 2022
@@ -0,0 +1,17 @@
+$NetBSD: patch-lib_ql__lib.qpp,v 1.1 2022/05/09 12:51:04 jperkin Exp $
+
+Avoid Linux-specific AF_* interfaces.
+
+--- lib/ql_lib.qpp.orig        2022-01-03 08:32:26.000000000 +0000
++++ lib/ql_lib.qpp
+@@ -67,6 +67,10 @@
+ #include <ifaddrs.h>
+ #include <sys/socket.h>
+ #include <sys/types.h>
++#if defined(__sun)
++#undef AF_LINK
++#undef AF_PACKET
++#endif
+ #ifdef AF_LINK
+ #include <net/if_dl.h>
+ #endif



Home | Main Index | Thread Index | Old Index