]> git.pld-linux.org Git - packages/kicad.git/blob - kicad-bug-921553.patch
- release 3 (by relup.sh)
[packages/kicad.git] / kicad-bug-921553.patch
1 diff -uNr kicad.orig/3d-viewer/CMakeLists.txt kicad/3d-viewer/CMakeLists.txt
2 --- kicad.orig/3d-viewer/CMakeLists.txt 2012-01-31 08:43:32.000000000 +0100
3 +++ kicad/3d-viewer/CMakeLists.txt      2012-02-07 22:56:39.427930449 +0100
4 @@ -19,4 +19,4 @@
5      trackball.cpp
6      )
7  
8 -add_library(3d-viewer ${3D-VIEWER_SRCS})
9 +add_library(3d-viewer STATIC ${3D-VIEWER_SRCS})
10 diff -uNr kicad.orig/bitmaps_png/CMakeLists.txt kicad/bitmaps_png/CMakeLists.txt
11 --- kicad.orig/bitmaps_png/CMakeLists.txt       2012-01-31 08:43:32.000000000 +0100
12 +++ kicad/bitmaps_png/CMakeLists.txt    2012-02-07 22:56:56.861533429 +0100
13 @@ -676,5 +676,5 @@
14  endforeach()
15  
16  #add_library( bitmaps SHARED ${CPP_LIST} )
17 -add_library( bitmaps ${CPP_LIST} )
18 +add_library( bitmaps STATIC ${CPP_LIST} )
19  
20 diff -uNr kicad.orig/bitmaps_xpm/CMakeLists.txt kicad/bitmaps_xpm/CMakeLists.txt
21 --- kicad.orig/bitmaps_xpm/CMakeLists.txt       2012-01-31 08:43:32.000000000 +0100
22 +++ kicad/bitmaps_xpm/CMakeLists.txt    2012-02-07 22:57:15.545155677 +0100
23 @@ -449,4 +449,4 @@
24      set_source_files_properties(${CPP_BITMAP} PROPERTIES COMPILE_FLAGS -DXPMMAIN)
25  endforeach(LOOP_VAR)
26  
27 -add_library(bitmaps ${CPP_BITMAPS})
28 +add_library(bitmaps STATIC ${CPP_BITMAPS})
29 diff -uNr kicad.orig/common/CMakeLists.txt kicad/common/CMakeLists.txt
30 --- kicad.orig/common/CMakeLists.txt    2012-01-31 08:43:32.000000000 +0100
31 +++ kicad/common/CMakeLists.txt 2012-02-07 22:57:43.145582514 +0100
32 @@ -77,7 +77,7 @@
33      zoom.cpp
34      )
35  
36 -add_library(common ${COMMON_SRCS})
37 +add_library(common STATIC ${COMMON_SRCS})
38  
39  set(PCB_COMMON_SRCS
40      base_screen.cpp
41 @@ -125,7 +125,7 @@
42      COMPILE_DEFINITIONS "PCBNEW"
43      )
44  
45 -add_library(pcbcommon ${PCB_COMMON_SRCS})
46 +add_library(pcbcommon STATIC ${PCB_COMMON_SRCS})
47  
48  
49  # auto-generate netlist_lexer.h and netlist_keywords.cpp
50 diff -uNr kicad.orig/polygon/CMakeLists.txt kicad/polygon/CMakeLists.txt
51 --- kicad.orig/polygon/CMakeLists.txt   2012-01-31 08:43:32.000000000 +0100
52 +++ kicad/polygon/CMakeLists.txt        2012-02-07 22:57:06.361680317 +0100
53 @@ -10,4 +10,4 @@
54      polygon_test_point_inside.cpp
55      )
56  
57 -add_library(polygon ${POLYGON_SRCS})
58 +add_library(polygon STATIC ${POLYGON_SRCS})
59 diff -uNr kicad.orig/polygon/kbool/src/CMakeLists.txt kicad/polygon/kbool/src/CMakeLists.txt
60 --- kicad.orig/polygon/kbool/src/CMakeLists.txt 2012-01-31 08:43:32.000000000 +0100
61 +++ kicad/polygon/kbool/src/CMakeLists.txt      2012-02-07 22:57:55.352437924 +0100
62 @@ -18,4 +18,4 @@
63      record.cpp
64      scanbeam.cpp)
65  
66 -add_library(kbool ${KBOOL_SRCS})
67 +add_library(kbool STATIC ${KBOOL_SRCS})
68 diff -uNr kicad.orig/potrace/CMakeLists.txt kicad/potrace/CMakeLists.txt
69 --- kicad.orig/potrace/CMakeLists.txt   2012-01-31 08:43:32.000000000 +0100
70 +++ kicad/potrace/CMakeLists.txt        2012-02-07 22:57:23.878617863 +0100
71 @@ -13,4 +13,4 @@
72      trace.cpp\r
73      )\r
74  \r
75 -add_library(potrace ${POTRACE_SRCS})\r
76 +add_library(potrace STATIC ${POTRACE_SRCS})\r
This page took 0.049132 seconds and 3 git commands to generate.