Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/tif22pnm/files: tif22pnm-0.14-gentoo.patch
Date: Fri, 02 Mar 2012 17:48:09
Message-Id: 20120302174754.7F5DD2004C@flycatcher.gentoo.org
1 ssuominen 12/03/02 17:47:54
2
3 Added: tif22pnm-0.14-gentoo.patch
4 Log:
5 Initial commit wrt #334551 by "Sven" and "Timur"
6
7 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-gfx/tif22pnm/files/tif22pnm-0.14-gentoo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/tif22pnm/files/tif22pnm-0.14-gentoo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/tif22pnm/files/tif22pnm-0.14-gentoo.patch?rev=1.1&content-type=text/plain
14
15 Index: tif22pnm-0.14-gentoo.patch
16 ===================================================================
17 --- configure.in
18 +++ configure.in
19 @@ -21,7 +21,6 @@
20 dnl Checks for programs.
21 AC_PROG_CC
22 AC_LANG_C
23 -CFLAGS=" "
24 dnl ^^^ set it to non-empty, so AC_PROG_CXX won't include `-g'
25 dnl AC_PROG_CXX
26 dnl AC_PTS_PROG_CFLAGS(fs, -fsigned-char)
27 --- do.sh
28 +++ do.sh
29 @@ -35,8 +35,8 @@
30 if [ x"$CMD" != x ]; then echo "Executing: $CMD"; fi
31
32 if [ "$CMD" = fast ]; then
33 - L_CC="$CC -s -O3 -DNDEBUG"
34 - L_LD="$LD -s"
35 + L_CC="$CC -DNDEBUG"
36 + L_LD="$LD"
37 elif [ "$CMD" = debug ]; then
38 L_CC="$CC $GFLAG"
39 L_LD="$LD"
40 @@ -47,14 +47,14 @@
41 L_CC="checkergcc $GFLAG"
42 L_LD="checkergcc"
43 elif [ "$CMD" = small ]; then
44 - L_CC="$CC -Os -DNDEBUG"
45 - L_LD="$LD -s"
46 + L_CC="$CC -DNDEBUG"
47 + L_LD="$LD"
48 elif [ "$CMD" = final ]; then
49 - L_CC="$CC -O2 -DNDEBUG"
50 - L_LD="$LD -s"
51 + L_CC="$CC -DNDEBUG"
52 + L_LD="$LD"
53 elif [ "$CMD" = asserted ]; then
54 - L_CC="$CC -O2"
55 - L_LD="$LD -s"
56 + L_CC="$CC"
57 + L_LD="$LD"
58 elif [ "$CMD" = clean ]; then
59 rm -f *.o core DEADJOE tif22pnm png22pnm
60 exit