Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/yajl/files: yajl-fix_static_linking.patch
Date: Fri, 11 Feb 2011 18:41:16
Message-Id: 20110211184101.BF35720054@flycatcher.gentoo.org
1 scarabeus 11/02/11 18:41:01
2
3 Added: yajl-fix_static_linking.patch
4 Log:
5 Fix static linking and tests per Diego's request.
6
7 (Portage version: 2.2.0_alpha21/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-libs/yajl/files/yajl-fix_static_linking.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/files/yajl-fix_static_linking.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/files/yajl-fix_static_linking.patch?rev=1.1&content-type=text/plain
14
15 Index: yajl-fix_static_linking.patch
16 ===================================================================
17 diff -urN lloyd-yajl-f4baae0.old//reformatter/CMakeLists.txt lloyd-yajl-f4baae0//reformatter/CMakeLists.txt
18 --- lloyd-yajl-f4baae0.old//reformatter/CMakeLists.txt 2010-07-22 00:12:15.000000000 +0200
19 +++ lloyd-yajl-f4baae0//reformatter/CMakeLists.txt 2011-02-11 19:28:40.006756997 +0100
20 @@ -42,7 +42,7 @@
21
22 ADD_EXECUTABLE(json_reformat ${SRCS})
23
24 -TARGET_LINK_LIBRARIES(json_reformat yajl_s)
25 +TARGET_LINK_LIBRARIES(json_reformat yajl)
26
27 # copy the binary into the output directory
28 GET_TARGET_PROPERTY(binPath json_reformat LOCATION)
29 diff -urN lloyd-yajl-f4baae0.old//verify/CMakeLists.txt lloyd-yajl-f4baae0//verify/CMakeLists.txt
30 --- lloyd-yajl-f4baae0.old//verify/CMakeLists.txt 2010-07-22 00:12:15.000000000 +0200
31 +++ lloyd-yajl-f4baae0//verify/CMakeLists.txt 2011-02-11 19:28:58.296756998 +0100
32 @@ -42,7 +42,7 @@
33
34 ADD_EXECUTABLE(json_verify ${SRCS})
35
36 -TARGET_LINK_LIBRARIES(json_verify yajl_s)
37 +TARGET_LINK_LIBRARIES(json_verify yajl)
38
39 # copy in the binary
40 GET_TARGET_PROPERTY(binPath json_verify LOCATION)