Received: by mail.netbsd.org (Postfix, from userid 605) id 2113584D82; Thu, 6 Jun 2019 13:02:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9712F84D85 for ; Thu, 6 Jun 2019 13:02:30 +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 Akt8hWkEmPii for ; Thu, 6 Jun 2019 13:02:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E965384D82 for ; Thu, 6 Jun 2019 13:02:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E3E2DFBF4; Thu, 6 Jun 2019 13:02:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1559826149266950" MIME-Version: 1.0 Date: Thu, 6 Jun 2019 13:02:29 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/emulators/simh To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20190606130229.E3E2DFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1559826149266950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Thu Jun 6 13:02:29 UTC 2019 Modified Files: pkgsrc/emulators/simh: Makefile Log Message: simh: fix building on debian 9.9. Need -lm for floor and others. Need -pthread for sem_timedwait. To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 pkgsrc/emulators/simh/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1559826149266950 Content-Disposition: inline Content-Length: 645 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/simh/Makefile diff -u pkgsrc/emulators/simh/Makefile:1.50 pkgsrc/emulators/simh/Makefile:1.51 --- pkgsrc/emulators/simh/Makefile:1.50 Mon Sep 24 14:12:28 2018 +++ pkgsrc/emulators/simh/Makefile Thu Jun 6 13:02:29 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2018/09/24 14:12:28 gson Exp $ +# $NetBSD: Makefile,v 1.51 2019/06/06 13:02:29 maya Exp $ DISTNAME= simh-4.0.0 PKGNAME= simh-4.0.0.20180919 @@ -34,6 +34,8 @@ CFLAGS+= -fforce-addr CFLAGS.SunOS+= -DBSD_COMP LDFLAGS.SunOS+= -lm +LDFLAGS.Linux+= -lm -pthread + INSTALLATION_DIRS= bin share/simh share/doc/simh MAKE_FILE= makefile --_----------=_1559826149266950--