Gentoo Archives: gentoo-commits

From: "Wulf Krueger (philantrop)" <philantrop@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/xmlrpc-c/files: xmlrpc-c-1.06.09-asneeded.patch xmlrpc-c-1.06.09-strsol.patch
Date: Sun, 02 Mar 2008 00:44:25
Message-Id: E1JVcJS-0006VZ-V1@stork.gentoo.org
1 philantrop 08/03/02 00:44:22
2
3 Modified: xmlrpc-c-1.06.09-asneeded.patch
4 Added: xmlrpc-c-1.06.09-strsol.patch
5 Log:
6 Added an updated linking patch as kindly provided by corsair on bug 209138. xmlrpc-c now respects the user's LDFLAGS. Fixes bug 209693.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.2 dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-asneeded.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-asneeded.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-asneeded.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-asneeded.patch?r1=1.1&r2=1.2
15
16 Index: xmlrpc-c-1.06.09-asneeded.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-asneeded.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- xmlrpc-c-1.06.09-asneeded.patch 11 Feb 2008 19:38:47 -0000 1.1
23 +++ xmlrpc-c-1.06.09-asneeded.patch 2 Mar 2008 00:44:22 -0000 1.2
24 @@ -19,3 +19,47 @@
25
26 LIB_OBJS = $(LIBXMLRPC_CLIENT_OBJS) $(LIBXMLRPC_SERVER_OBJS)
27
28 +diff -Naur xmlrpc-c-1.06.09.orig/examples/cpp/Makefile xmlrpc-c-1.06.09/examples/cpp/Makefile
29 +--- xmlrpc-c-1.06.09.orig/examples/cpp/Makefile 2006-01-09 00:36:06.000000000 +0100
30 ++++ xmlrpc-c-1.06.09/examples/cpp/Makefile 2008-03-02 00:15:42.000000000 +0100
31 +@@ -63,13 +63,13 @@
32 + all: $(PROGS)
33 +
34 + $(SERVERPROGS_ABYSS):%:%.o
35 +- $(CXXLD) -o $@ $(LDFLAGS) $^ $(LDADD_SERVER_ABYSS)
36 ++ $(CXXLD) -o $@ $^ $(LDADD_SERVER_ABYSS) $(LDFLAGS)
37 +
38 + $(LEGACY_CLIENTPROGS):%:%.o
39 +- $(CXXLD) -o $@ $(LDFLAGS) $^ $(LDADD_LEGACY_CLIENT)
40 ++ $(CXXLD) -o $@ $^ $(LDADD_LEGACY_CLIENT) $(LDFLAGS)
41 +
42 + $(CLIENTPROGS):%:%.o
43 +- $(CXXLD) -o $@ $(LDFLAGS) $^ $(LDADD_CLIENT)
44 ++ $(CXXLD) -o $@ $^ $(LDADD_CLIENT) $(LDFLAGS)
45 +
46 + %.o:%.cpp
47 + $(CXX) -c $(INCLUDES) $(CXXFLAGS) $<
48 +diff -Naur xmlrpc-c-1.06.09.orig/examples/Makefile xmlrpc-c-1.06.09/examples/Makefile
49 +--- xmlrpc-c-1.06.09.orig/examples/Makefile 2005-11-20 22:39:57.000000000 +0100
50 ++++ xmlrpc-c-1.06.09/examples/Makefile 2008-03-02 00:15:04.000000000 +0100
51 +@@ -81,16 +81,16 @@
52 + $(MAKE) -C $(dir $@) $(notdir $@)
53 +
54 + $(CLIENTPROGS):%:%.o
55 +- $(CCLD) -o $@ $(LDFLAGS) $^ $(LDADD_CLIENT)
56 ++ $(CCLD) -o $@ $^ $(LDADD_CLIENT) $(LDFLAGS)
57 +
58 + $(SERVERPROGS_CGI):%.cgi:%_cgi.o
59 +- $(CCLD) -o $@ $(LDFLAGS) $^ $(LDADD_SERVER_CGI)
60 ++ $(CCLD) -o $@ $^ $(LDADD_SERVER_CGI) $(LDFLAGS)
61 +
62 + $(SERVERPROGS_ABYSS):%:%.o
63 +- $(CCLD) -o $@ $(LDFLAGS) $^ $(LDADD_SERVER_ABYSS)
64 ++ $(CCLD) -o $@ $^ $(LDADD_SERVER_ABYSS) $(LDFLAGS)
65 +
66 + gen_sample_add_xml:%:%.o
67 +- $(CCLD) -o $@ $(LDFLAGS) $^ $(LDADD_BASE)
68 ++ $(CCLD) -o $@ $^ $(LDADD_BASE) $(LDFLAGS)
69 +
70 + %.o:%.c
71 + $(CC) -c $(INCLUDES) $(CFLAGS) $<
72
73
74
75 1.1 dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-strsol.patch
76
77 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-strsol.patch?rev=1.1&view=markup
78 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.06.09-strsol.patch?rev=1.1&content-type=text/plain
79
80 Index: xmlrpc-c-1.06.09-strsol.patch
81 ===================================================================
82 --- xmlrpc-c-1.06.09/tools/Makefile.common.orig 2006-07-30 05:07:28.000000000 +0200
83 +++ xmlrpc-c-1.06.09/tools/Makefile.common 2008-02-29 11:57:06.000000000 +0100
84 @@ -1,6 +1,7 @@
85 # -*-makefile-*- <-- an Emacs control
86
87 CLIENT_LDLIBS = -L$(BUILDDIR)/src/.libs -lxmlrpc_client -lxmlrpc
88 +CLIENT_LDLIBS += -L$(BUILDDIR)/lib/libutil/.libs -lxmlrpc_util
89
90 ifeq ($(MUST_BUILD_LIBWWW_CLIENT),yes)
91 CLIENT_LDLIBS += $(shell libwww-config --libs)
92 @@ -14,8 +15,6 @@
93
94 CLIENT_LDLIBS += $(LDLIBS_XML)
95
96 -CLIENT_LDLIBS += -L$(BUILDDIR)/lib/libutil/.libs -lxmlrpc_util
97 -
98
99 UTIL_DIR = $(BUILDDIR)/lib/util
100
101
102
103
104 --
105 gentoo-commits@l.g.o mailing list