Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 7BDC47A21A for ; Thu, 23 Feb 2017 10:18:08 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id ECCD2855FB; Thu, 23 Feb 2017 10:18:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6B795855D2 for ; Thu, 23 Feb 2017 10:18:07 +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 vh29iU-buvci for ; Thu, 23 Feb 2017 10:18:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F0BCA84CDB for ; Thu, 23 Feb 2017 10:18:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EE505FBE4; Thu, 23 Feb 2017 10:18:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1487845086159430" MIME-Version: 1.0 Date: Thu, 23 Feb 2017 10:18:06 +0000 From: "Rin Okuyama" Subject: CVS commit: pkgsrc/emulators/simh To: pkgsrc-changes@NetBSD.org Reply-To: rin@netbsd.org X-Mailer: log_accum Message-Id: <20170223101806.EE505FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1487845086159430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rin Date: Thu Feb 23 10:18:06 UTC 2017 Modified Files: pkgsrc/emulators/simh: Makefile Log Message: PR pkg/51970: Ethernet (libpcap) support not compiled in Make sure that /usr/include and /usr/lib${LIBABISUFFIX} always appear in the search paths for headers and libraries, respectively. Fix the broken ethernet support (and etc) on platforms like NetBSD. Thanks hans for his valuable suggestions. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 pkgsrc/emulators/simh/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1487845086159430 Content-Disposition: inline Content-Length: 1490 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.45 pkgsrc/emulators/simh/Makefile:1.46 --- pkgsrc/emulators/simh/Makefile:1.45 Wed Feb 15 01:27:00 2017 +++ pkgsrc/emulators/simh/Makefile Thu Feb 23 10:18:06 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.45 2017/02/15 01:27:00 maya Exp $ +# $NetBSD: Makefile,v 1.46 2017/02/23 10:18:06 rin Exp $ DISTNAME= simh-4.0.0 PKGNAME= simh-4.0.0.20161218 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_GITHUB:=simh/} GITHUB_PROJECT= simh @@ -33,9 +33,6 @@ CFLAGS+= -fforce-addr CFLAGS.SunOS+= -DBSD_COMP LDFLAGS.SunOS+= -lm -CFLAGS+= -DUSE_NETWORK -LDFLAGS+= -lpcap - INSTALLATION_DIRS= bin share/simh share/doc/simh MAKE_FILE= makefile @@ -43,12 +40,14 @@ INCLUDES= ${PREFIX:Q}/include:\ ${BUILDLINK_PREFIX.SDL_ttf:Q}/include/SDL:\ ${BUILDLINK_PREFIX.libpcap:Q}/include/pcap:\ ${BUILDLINK_PREFIX.pcre:Q}/include/pcre:\ - ${BUILDLINK_PREFIX.png:Q}/include + ${BUILDLINK_PREFIX.png:Q}/include:\ + /usr/include LIBRARIES= ${PREFIX:Q}/lib:\ ${BUILDLINK_PREFIX.SDL_ttf:Q}/lib${LIBABISUFFIX}:\ ${BUILDLINK_PREFIX.libpcap:Q}/lib${LIBABISUFFIX}:\ ${BUILDLINK_PREFIX.pcre:Q}/lib${LIBABISUFFIX}:\ - ${BUILDLINK_PREFIX.png:Q}/lib${LIBABISUFFIX} + ${BUILDLINK_PREFIX.png:Q}/lib${LIBABISUFFIX}:\ + /usr/lib${LIBABISUFFIX} MAKE_ENV+= INCLUDES=${INCLUDES:Q} MAKE_ENV+= LIBRARIES=${LIBRARIES:Q} MAKE_ENV+= GCC=${CC:Q} --_----------=_1487845086159430--