File: use_shared_libs.patch

package info (click to toggle)
rapmap 0.15.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,408 kB
  • sloc: cpp: 48,827; ansic: 4,471; sh: 215; python: 82; makefile: 19
file content (15 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Author: Andreas Tille <tille@debian.org>
Last-Update: Sat, 15 Oct 2016 15:33:47 +0200
Description: Prefer dynamic to static libraries

--- rapmap.orig/CMakeLists.txt
+++ rapmap/CMakeLists.txt
@@ -70,7 +70,7 @@
 endif()
 
 ## Prefer static to dynamic libraries
-SET(CMAKE_FIND_LIBRARY_SUFFIXES .a ${CMAKE_FIND_LIBRARY_SUFFIXES})
+SET(CMAKE_FIND_LIBRARY_SUFFIXES .so ${CMAKE_FIND_LIBRARY_SUFFIXES})
 
 ## Set the standard required compile flags
 if (NO_NATIVE_ARCH)