Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EFFE784CEB for ; Wed, 21 Jun 2023 15:16:15 +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 5rCM2Bi4Xu6z for ; Wed, 21 Jun 2023 15:16:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 509B584C86 for ; Wed, 21 Jun 2023 15:16:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4DDB5FA89; Wed, 21 Jun 2023 15:16:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168736057543850" MIME-Version: 1.0 Date: Wed, 21 Jun 2023 15:16:15 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/www/w3m To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20230621151615.4DDB5FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168736057543850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Wed Jun 21 15:16:15 UTC 2023 Modified Files: pkgsrc/www/w3m: Makefile.common Log Message: w3m{,-img}: needs -lm on Solaris. To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 pkgsrc/www/w3m/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168736057543850 Content-Disposition: inline Content-Length: 761 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/w3m/Makefile.common diff -u pkgsrc/www/w3m/Makefile.common:1.76 pkgsrc/www/w3m/Makefile.common:1.77 --- pkgsrc/www/w3m/Makefile.common:1.76 Thu Apr 27 13:26:19 2023 +++ pkgsrc/www/w3m/Makefile.common Wed Jun 21 15:16:15 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.76 2023/04/27 13:26:19 wiz Exp $ +# $NetBSD: Makefile.common,v 1.77 2023/06/21 15:16:15 schmonz Exp $ # # used by www/w3m/Makefile # used by www/w3m-img/Makefile @@ -70,6 +70,10 @@ SUBST_STAGE.fh= pre-configure SUBST_FILES.fh= istream.* SUBST_SED.fh= -e 's/file_handle/file_handle_rofl/g' +.if ${OPSYS} == SunOS && ${OS_VARIANT} == Solaris +LDFLAGS+= -lm +.endif + INSTALLATION_DIRS+= ${DOCDIR} INSTALL_TARGET= install install-helpfile --_----------=_168736057543850--