Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/freetype/files: freetype-1.4_pre20080316-LDLFAGS.patch
Date: Mon, 23 Mar 2009 14:51:30
Message-Id: E1LllUu-0007yQ-Jz@stork.gentoo.org
1 pva 09/03/23 14:51:28
2
3 Added: freetype-1.4_pre20080316-LDLFAGS.patch
4 Log:
5 Respect LDFLAGS, bug #263131 thank Davide Pesavento for report.
6 (Portage version: 2.2_rc26/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 media-libs/freetype/files/freetype-1.4_pre20080316-LDLFAGS.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/freetype/files/freetype-1.4_pre20080316-LDLFAGS.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/freetype/files/freetype-1.4_pre20080316-LDLFAGS.patch?rev=1.1&content-type=text/plain
13
14 Index: freetype-1.4_pre20080316-LDLFAGS.patch
15 ===================================================================
16 === modified file 'configure.in'
17 --- configure.in 2009-03-23 12:17:31 +0000
18 +++ configure.in 2009-03-23 14:15:09 +0000
19 @@ -66,7 +66,7 @@
20 dnl NLS/gettext nightmare^H^H^H^H^H^H^H^H^H^H support...
21
22 if test "$USE_NLS" = "yes"; then
23 - AC_REQUIRE([AC_PROG_MAKE_SET])
24 + AC_PROG_MAKE_SET
25 AC_CHECK_HEADERS(locale.h)
26 AC_CHECK_FUNCS(setlocale)
27 AC_SUBST(HAVE_LOCALE_H)
28
29 === modified file 'freetype1-contrib/ttf2bdf/Makefile.in'
30 --- freetype1-contrib/ttf2bdf/Makefile.in 2009-03-23 12:17:31 +0000
31 +++ freetype1-contrib/ttf2bdf/Makefile.in 2009-03-23 12:25:17 +0000
32 @@ -52,7 +52,7 @@
33 all: ttf2bdf
34
35 ttf2bdf: $(OBJS)
36 - $(PURIFY) $(CC) $(STATIC) $(CFLAGS) -o ttf2bdf $(OBJS) $(LIBS)
37 + $(PURIFY) $(CC) $(LDFLAGS) $(STATIC) $(CFLAGS) -o ttf2bdf $(OBJS) $(LIBS)
38
39 clean:
40 $(RM) -f *.o *BAK *CKP *~ a.out core
41
42 === modified file 'lib/arch/unix/Makefile.in'
43 --- lib/arch/unix/Makefile.in 2009-03-23 12:17:31 +0000
44 +++ lib/arch/unix/Makefile.in 2009-03-23 12:26:37 +0000
45 @@ -205,7 +205,7 @@
46 $(SRC_S)
47
48 libttf.la: $(LIB_FILES)
49 - $(LIBTOOL) --mode=link $(CC) -o libttf.la $(LIB_FILES) \
50 + $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o libttf.la $(LIB_FILES) \
51 -rpath $(libdir) \
52 -version-info $(version_info) $(FT_LIBS)