Received: by mail.netbsd.org (Postfix, from userid 605) id 07A3E84F2B; Sat, 15 Apr 2023 11:00:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 388EA84E54 for ; Sat, 15 Apr 2023 11:00:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ZvFPiBi5EVh1 for ; Sat, 15 Apr 2023 11:00:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7CAB084CF8 for ; Sat, 15 Apr 2023 11:00:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7600BFA85; Sat, 15 Apr 2023 11:00:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1681556442207240" MIME-Version: 1.0 Date: Sat, 15 Apr 2023 11:00:42 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/x11/qt6-qtbase To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20230415110042.7600BFA85@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1681556442207240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Sat Apr 15 11:00:42 UTC 2023 Modified Files: pkgsrc/x11/qt6-qtbase: Makefile PLIST.SunOS Log Message: qt6-qtbase: inotify check on SunOS To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/x11/qt6-qtbase/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/qt6-qtbase/PLIST.SunOS Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1681556442207240 Content-Disposition: inline Content-Length: 1354 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/qt6-qtbase/Makefile diff -u pkgsrc/x11/qt6-qtbase/Makefile:1.6 pkgsrc/x11/qt6-qtbase/Makefile:1.7 --- pkgsrc/x11/qt6-qtbase/Makefile:1.6 Fri Apr 7 18:28:05 2023 +++ pkgsrc/x11/qt6-qtbase/Makefile Sat Apr 15 11:00:42 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2023/04/07 18:28:05 nros Exp $ +# $NetBSD: Makefile,v 1.7 2023/04/15 11:00:42 nros Exp $ DISTNAME= qtbase-everywhere-src-${QTVERSION} PKGNAME= qt6-qtbase-${QTVERSION} @@ -101,6 +101,11 @@ LDFLAGS+= -ldl LDFLAGS+= -lexecinfo . endif LDFLAGS.FreeBSD+= -lutil +.elif ${OPSYS} == "SunOS" +PLIST_VARS+= inotify +. if exists(/usr/include/sys/inotify.h) +PLIST.inotify= yes +. endif .endif REPLACE_PERL+= libexec/syncqt.pl Index: pkgsrc/x11/qt6-qtbase/PLIST.SunOS diff -u pkgsrc/x11/qt6-qtbase/PLIST.SunOS:1.1 pkgsrc/x11/qt6-qtbase/PLIST.SunOS:1.2 --- pkgsrc/x11/qt6-qtbase/PLIST.SunOS:1.1 Sun Apr 9 08:58:51 2023 +++ pkgsrc/x11/qt6-qtbase/PLIST.SunOS Sat Apr 15 11:00:42 2023 @@ -1,2 +1,3 @@ -@comment $NetBSD: PLIST.SunOS,v 1.1 2023/04/09 08:58:51 nros Exp $ +@comment $NetBSD: PLIST.SunOS,v 1.2 2023/04/15 11:00:42 nros Exp $ +${PLIST.inotify}qt6/include/QtCore/${PKGVERSION}/QtCore/private/qfilesystemwatcher_inotify_p.h qt6/include/QtDeviceDiscoverySupport/${PKGVERSION}/QtDeviceDiscoverySupport/private/qdevicediscovery_dummy_p.h --_----------=_1681556442207240--