Received: by mail.netbsd.org (Postfix, from userid 605) id BCAE184EE1; Tue, 20 Sep 2022 00:17:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EAA8084EDE for ; Tue, 20 Sep 2022 00:17:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id haK97UAR6PhI for ; Tue, 20 Sep 2022 00:17:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 48EC084CEE for ; Tue, 20 Sep 2022 00:17:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41F19FA90; Tue, 20 Sep 2022 00:17:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1663633045284530" MIME-Version: 1.0 Date: Tue, 20 Sep 2022 00:17:25 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/net/dq To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20220920001725.41F19FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1663633045284530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Tue Sep 20 00:17:25 UTC 2022 Modified Files: pkgsrc/net/dq: Makefile Log Message: Needs -lsocket on Solarish. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/dq/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1663633045284530 Content-Disposition: inline Content-Length: 993 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/dq/Makefile diff -u pkgsrc/net/dq/Makefile:1.2 pkgsrc/net/dq/Makefile:1.3 --- pkgsrc/net/dq/Makefile:1.2 Thu Aug 25 17:59:08 2022 +++ pkgsrc/net/dq/Makefile Tue Sep 20 00:17:25 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2022/08/25 17:59:08 schmonz Exp $ +# $NetBSD: Makefile,v 1.3 2022/09/20 00:17:25 schmonz Exp $ DISTNAME= ${GITHUB_PROJECT} PKGNAME= ${GITHUB_PROJECT}-${GITHUB_TAG} @@ -25,7 +25,6 @@ SUBST_FILES.prefix= Makefile SUBST_VARS.prefix= PREFIX EGDIR= share/examples/${PKGBASE} -INSTALLATION_DIRS= ${EGDIR} MAKE_DIRS+= ${PKG_SYSCONFDIR}/dqcache/servers CONF_FILES+= ${PREFIX}/${EGDIR}/dnscurveroots.global \ @@ -39,7 +38,9 @@ RCD_SCRIPTS= dqcache FILES_SUBST+= DQCACHE_USER=${DQCACHE_USER:Q} FILES_SUBST+= PKGNAME=${PKGNAME:Q} -INSTALLATION_DIRS+= bin sbin man/man1 man/man8 +LDFLAGS.SunOS+= -lsocket + +INSTALLATION_DIRS+= bin sbin man/man1 man/man8 ${EGDIR} post-install: for i in ${WRKSRC}/man/dq*.1; do \ --_----------=_1663633045284530--