The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / musepack / 0001-shared.patch
1 Fixup installation of shared mpcdec library.
2 Based on gentoo patch.
3
4 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
5 ---
6
7 diff -Nura musepack_src_r475.orig/libmpcdec/CMakeLists.txt musepack_src_r475/libmpcdec/CMakeLists.txt
8 --- musepack_src_r475.orig/libmpcdec/CMakeLists.txt     2010-08-21 12:55:01.000000000 -0300
9 +++ musepack_src_r475/libmpcdec/CMakeLists.txt  2011-08-17 15:53:06.126873408 -0300
10 @@ -1,7 +1,12 @@
11  include_directories(${libmpc_SOURCE_DIR}/include)
12  if(SHARED)
13 -  add_library(mpcdec SHARED huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_demux requant synth_filter ${libmpc_SOURCE_DIR}/common/crc32)
14 +  add_library(mpcdec_shared SHARED huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_demux requant synth_filter ${libmpc_SOURCE_DIR}/common/crc32)
15 +  set_target_properties(mpcdec_shared PROPERTIES OUTPUT_NAME mpcdec CLEAN_DIRECT_OUTPUT 1 VERSION 7.0.1 SOVERSION 7)
16 +  target_link_libraries(mpcdec_shared m)
17 +  install(TARGETS mpcdec_shared LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}")
18  else(SHARED)
19    add_library(mpcdec_static STATIC huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_demux requant synth_filter ${libmpc_SOURCE_DIR}/common/crc32)
20 +  set_target_properties(mpcdec_static PROPERTIES OUTPUT_NAME mpcdec CLEAN_DIRECT_OUTPUT 1)
21 +  target_link_libraries(mpcdec_static m)
22 +  install(TARGETS mpcdec_static LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}")
23  endif(SHARED)
24 -