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 08C8A7A213 for ; Mon, 23 Jan 2017 18:50:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 76CC885608; Mon, 23 Jan 2017 18:50:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0792E85605 for ; Mon, 23 Jan 2017 18:50:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bNSVzI-1_iwF for ; Mon, 23 Jan 2017 18:50:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 676E1855A4 for ; Mon, 23 Jan 2017 18:50:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6293AFBA6; Mon, 23 Jan 2017 18:50:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1485197402185650" MIME-Version: 1.0 Date: Mon, 23 Jan 2017 18:50:02 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/devel/libusb1 To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20170123185002.6293AFBA6@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. --_----------=_1485197402185650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Mon Jan 23 18:50:02 UTC 2017 Modified Files: pkgsrc/devel/libusb1: Makefile Log Message: libusb1: avoid a linux-only dependency on udev. this may harm linux functionality, but udev is part of systemd. I don't expect pkgsrc systemd support to be improved any time soon, and this package is unnecessarily failing on linux, and taking out 90 other packages depending on it. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/libusb1/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1485197402185650 Content-Disposition: inline Content-Length: 698 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libusb1/Makefile diff -u pkgsrc/devel/libusb1/Makefile:1.13 pkgsrc/devel/libusb1/Makefile:1.14 --- pkgsrc/devel/libusb1/Makefile:1.13 Sat Apr 9 08:18:58 2016 +++ pkgsrc/devel/libusb1/Makefile Mon Jan 23 18:50:02 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2016/04/09 08:18:58 richard Exp $ +# $NetBSD: Makefile,v 1.14 2017/01/23 18:50:02 maya Exp $ DISTNAME= libusb-1.0.20 PKGNAME= ${DISTNAME:S/libusb/libusb1/} @@ -23,6 +23,9 @@ MAKE_JOBS_SAFE= no PKGCONFIG_OVERRIDE+= libusb-1.0.pc.in +# systemd dependency +CONFIGURE_ARGS.Linux+= --disable-udev + CONFIGURE_ARGS+= --enable-tests-build #CONFIGURE_ARGS+= --enable-examples-build --_----------=_1485197402185650--