Received: by mail.netbsd.org (Postfix, from userid 605) id 6B1F684DE0; Tue, 3 Sep 2019 09:35:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E61B084DDF for ; Tue, 3 Sep 2019 09:35:18 +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 RVdNdQyhTARk for ; Tue, 3 Sep 2019 09:35:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7CF3F84D98 for ; Tue, 3 Sep 2019 09:35:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 77157FBF4; Tue, 3 Sep 2019 09:35:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156750331828720" MIME-Version: 1.0 Date: Tue, 3 Sep 2019 09:35:18 +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: <20190903093518.77157FBF4@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. --_----------=_156750331828720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Tue Sep 3 09:35:18 UTC 2019 Modified Files: pkgsrc/emulators/simh: Makefile Log Message: simh: needs -lrt on linux (for shm_open) To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/emulators/simh/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156750331828720 Content-Disposition: inline Content-Length: 658 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.51 pkgsrc/emulators/simh/Makefile:1.52 --- pkgsrc/emulators/simh/Makefile:1.51 Thu Jun 6 13:02:29 2019 +++ pkgsrc/emulators/simh/Makefile Tue Sep 3 09:35:18 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2019/06/06 13:02:29 maya Exp $ +# $NetBSD: Makefile,v 1.52 2019/09/03 09:35:18 maya Exp $ DISTNAME= simh-4.0.0 PKGNAME= simh-4.0.0.20180919 @@ -34,7 +34,7 @@ CFLAGS+= -fforce-addr CFLAGS.SunOS+= -DBSD_COMP LDFLAGS.SunOS+= -lm -LDFLAGS.Linux+= -lm -pthread +LDFLAGS.Linux+= -lm -pthread -lrt INSTALLATION_DIRS= bin share/simh share/doc/simh --_----------=_156750331828720--