Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in portage-utils: .depend qsize.c
Date: Sat, 26 Sep 2009 21:02:28
Message-Id: E1MreP3-0006Z3-VW@stork.gentoo.org
1 grobian 09/09/26 21:02:01
2
3 Modified: .depend qsize.c
4 Log:
5 move S_BLKSIZE definitions into libq/compat.c per solar's suggestion
6
7 Revision Changes Path
8 1.31 portage-utils/.depend
9
10 <<Binary file>>
11
12
13 1.32 portage-utils/qsize.c
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/qsize.c?rev=1.32&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/qsize.c?rev=1.32&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/qsize.c?r1=1.31&r2=1.32
18
19 Index: qsize.c
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-projects/portage-utils/qsize.c,v
22 retrieving revision 1.31
23 retrieving revision 1.32
24 diff -u -r1.31 -r1.32
25 --- qsize.c 8 Sep 2009 17:21:50 -0000 1.31
26 +++ qsize.c 26 Sep 2009 21:02:01 -0000 1.32
27 @@ -1,7 +1,7 @@
28 /*
29 * Copyright 2005-2007 Gentoo Foundation
30 * Distributed under the terms of the GNU General Public License v2
31 - * $Header: /var/cvsroot/gentoo-projects/portage-utils/qsize.c,v 1.31 2009/09/08 17:21:50 grobian Exp $
32 + * $Header: /var/cvsroot/gentoo-projects/portage-utils/qsize.c,v 1.32 2009/09/26 21:02:01 grobian Exp $
33 *
34 * Copyright 2005-2007 Ned Ludd - <solar@g.o>
35 * Copyright 2005-2007 Mike Frysinger - <vapier@g.o>
36 @@ -32,22 +32,9 @@
37 "Ignore regexp string",
38 COMMON_OPTS_HELP
39 };
40 -static const char qsize_rcsid[] = "$Id: qsize.c,v 1.31 2009/09/08 17:21:50 grobian Exp $";
41 +static const char qsize_rcsid[] = "$Id: qsize.c,v 1.32 2009/09/26 21:02:01 grobian Exp $";
42 #define qsize_usage(ret) usage(ret, QSIZE_FLAGS, qsize_long_opts, qsize_opts_help, lookup_applet_idx("qsize"))
43
44 -#ifdef _AIX
45 -# include <sys/stat.h>
46 -# define S_BLKSIZE DEV_BSIZE
47 -#endif
48 -
49 -#ifdef __INTERIX
50 -# define S_BLKSIZE S_BLOCK_SIZE
51 -#endif
52 -
53 -#ifdef __hpux
54 -# define S_BLKSIZE st.st_blksize
55 -#endif
56 -
57 int qsize_main(int argc, char **argv)
58 {
59 DIR *dir, *dirp;