From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Ml4O8-0003nh-LB for garchives@archives.gentoo.org; Tue, 08 Sep 2009 17:21:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF43DE093A; Tue, 8 Sep 2009 17:21:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A92E2E093A for ; Tue, 8 Sep 2009 17:21:51 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 5834364E9F for ; Tue, 8 Sep 2009 17:21:51 +0000 (UTC) Received: from grobian by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1Ml4O6-0006sA-Mx for gentoo-commits@lists.gentoo.org; Tue, 08 Sep 2009 17:21:50 +0000 From: "Fabian Groffen (grobian)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, grobian@gentoo.org Subject: [gentoo-commits] gentoo-projects commit in portage-utils: qsize.c X-VCS-Repository: gentoo-projects X-VCS-Files: qsize.c X-VCS-Directories: portage-utils X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen Content-Type: text/plain; charset=utf8 Message-Id: Sender: Fabian Groffen Date: Tue, 08 Sep 2009 17:21:50 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: b0773f3a-3c1f-4afb-b8e0-1d3d3e2765f4 X-Archives-Hash: fb8b732710f594b79ba3fdbf221d7b17 grobian 09/09/08 17:21:50 Modified: qsize.c Log: Add support for HPUX and FreeMiNT by Michael Haubenwallner and Alan Hou= rihane Revision Changes Path 1.31 portage-utils/qsize.c file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils= /qsize.c?rev=3D1.31&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils= /qsize.c?rev=3D1.31&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils= /qsize.c?r1=3D1.30&r2=3D1.31 Index: qsize.c =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 RCS file: /var/cvsroot/gentoo-projects/portage-utils/qsize.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- qsize.c 24 Mar 2009 18:54:41 -0000 1.30 +++ qsize.c 8 Sep 2009 17:21:50 -0000 1.31 @@ -1,7 +1,7 @@ /* * Copyright 2005-2007 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 - * $Header: /var/cvsroot/gentoo-projects/portage-utils/qsize.c,v 1.30 20= 09/03/24 18:54:41 grobian Exp $ + * $Header: /var/cvsroot/gentoo-projects/portage-utils/qsize.c,v 1.31 20= 09/09/08 17:21:50 grobian Exp $ * * Copyright 2005-2007 Ned Ludd - * Copyright 2005-2007 Mike Frysinger - @@ -32,7 +32,7 @@ "Ignore regexp string", COMMON_OPTS_HELP }; -static const char qsize_rcsid[] =3D "$Id: qsize.c,v 1.30 2009/03/24 18:5= 4:41 grobian Exp $"; +static const char qsize_rcsid[] =3D "$Id: qsize.c,v 1.31 2009/09/08 17:2= 1:50 grobian Exp $"; #define qsize_usage(ret) usage(ret, QSIZE_FLAGS, qsize_long_opts, qsize_= opts_help, lookup_applet_idx("qsize")) =20 #ifdef _AIX @@ -44,6 +44,10 @@ # define S_BLKSIZE S_BLOCK_SIZE #endif =20 +#ifdef __hpux +# define S_BLKSIZE st.st_blksize +#endif + int qsize_main(int argc, char **argv) { DIR *dir, *dirp;