From owner-svn-src-head@FreeBSD.ORG Tue Dec 2 08:28:41 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25F074F1; Tue, 2 Dec 2014 08:28:41 +0000 (UTC) Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com [IPv6:2a00:1450:400c:c05::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B96263CE; Tue, 2 Dec 2014 08:28:40 +0000 (UTC) Received: by mail-wi0-f180.google.com with SMTP id n3so20064710wiv.7 for ; Tue, 02 Dec 2014 00:28:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=VNkKpGpfGUaN1/Iz25Y3xQlKcvDHKp8VIkJK0o4JaS8=; b=zdxghsDc1JZSwwile1V/C6xDnkU7Z3SHT3uRMBGf0Is+8Mp+ZH+wdctxCwZh6+fqec ZcV0YyLpteD97Q1gp1DFUe3+ptydN56vMV4rDs/G3rg33pUccPwNLnxMgk0phoEF6E2k i2RWXwKMYyx56FUJ/YssuSqEDVLUUC+jtNjZ7sd6UUyrymEiklZNx3tIphh5UdeY4WZh ygEqOonZ6G2OSyr+IjlEwtHzTemuP2yxP4+rvw4/HadHK2f0/gZfjQZfi0uO+89Unr5y Un/9J00KomHH+PK+/zsoDG6Qo7B2W8805Y5N7o3Or0nheccdD/XFkA4CaVLEWX6R2v5t qjSQ== X-Received: by 10.194.190.19 with SMTP id gm19mr101131376wjc.51.1417508919251; Tue, 02 Dec 2014 00:28:39 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id bs2sm13691113wjc.43.2014.12.02.00.28.37 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 02 Dec 2014 00:28:38 -0800 (PST) Sender: Baptiste Daroussin Date: Tue, 2 Dec 2014 09:28:35 +0100 From: Baptiste Daroussin To: Rui Paulo Subject: Re: svn commit: r275395 - head/usr.sbin/gpioctl Message-ID: <20141202082835.GA35285@ivaldir.etoilebsd.net> References: <201412020611.sB26BXoI018937@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline In-Reply-To: <201412020611.sB26BXoI018937@svn.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Dec 2014 08:28:41 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 02, 2014 at 06:11:33AM +0000, Rui Paulo wrote: > Author: rpaulo > Date: Tue Dec 2 06:11:32 2014 > New Revision: 275395 > URL: https://svnweb.freebsd.org/changeset/base/275395 >=20 > Log: > Rewrite parts of gpioctl(8) to use the gpio(3) library. >=20 > Modified: > head/usr.sbin/gpioctl/Makefile > head/usr.sbin/gpioctl/gpioctl.c >=20 > Modified: head/usr.sbin/gpioctl/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/usr.sbin/gpioctl/Makefile Tue Dec 2 05:41:03 2014 (r275394) > +++ head/usr.sbin/gpioctl/Makefile Tue Dec 2 06:11:32 2014 (r275395) > @@ -3,4 +3,9 @@ > PROG=3D gpioctl > MAN=3D gpioctl.8 > =20 > +CFLAGS+=3D -I${.CURDIR}/../../lib/libgpio > + > +DPADD+=3D ${LIBGPIO} > +LDADD+=3D -lgpio > + I have spent a lot of time on adding LIBADD, too bad you are not using it :( Bapt --17pEHd4RhPHOinZp Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEABECAAYFAlR9eDAACgkQ8kTtMUmk6EyCEQCcCp0qdyydo8L0vZtWCV1CCshk kV0AoLJFgkAxzgWopL8uTBNONU8DK0vv =YLP7 -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp--