Received: by mail.netbsd.org (Postfix, from userid 605) id 7C80184EC8; Thu, 15 Dec 2022 11:30:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ACC1584E55 for ; Thu, 15 Dec 2022 11:30:02 +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 BkapWTdn2meY for ; Thu, 15 Dec 2022 11:30:02 +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 0C83884D40 for ; Thu, 15 Dec 2022 11:30:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04056FA90; Thu, 15 Dec 2022 11:30:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671103801289440" MIME-Version: 1.0 Date: Thu, 15 Dec 2022 11:30:01 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mail/smtpfeed To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20221215113002.04056FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671103801289440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Dec 15 11:30:01 UTC 2022 Modified Files: pkgsrc/mail/smtpfeed: Makefile Log Message: smtpfeed: Fix libraries on SunOS. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/mail/smtpfeed/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671103801289440 Content-Disposition: inline Content-Length: 787 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/smtpfeed/Makefile diff -u pkgsrc/mail/smtpfeed/Makefile:1.38 pkgsrc/mail/smtpfeed/Makefile:1.39 --- pkgsrc/mail/smtpfeed/Makefile:1.38 Mon May 24 19:52:53 2021 +++ pkgsrc/mail/smtpfeed/Makefile Thu Dec 15 11:30:01 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2021/05/24 19:52:53 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2022/12/15 11:30:01 jperkin Exp $ DISTNAME= smtpfeed-1.23 PKGREVISION= 1 @@ -21,6 +21,9 @@ CONFIGURE_ENV+= my_cv_path_lib_exec=${P # use bind8? #CONFIGURE_ARGS+= --with-bind8 +BUILDLINK_TRANSFORM.SunOS+= rm:-lutil +LDFLAGS.SunOS+= -lsocket -lnsl -lresolv + DOCS= COPYRIGHT FEATURES FEATURES.j FYI FYI.j INSTALL INSTALL.j \ ML-ADMIN ML-ADMIN.j OPTIONS OPTIONS.j README README.j \ RELEASE.NOTE SIGNAL SIGNAL.j TODO --_----------=_1671103801289440--