Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Use system-wide gzstream instead of that in lib dir.
· 410482f1
Shayan Doust
authored
Jul 15, 2019
410482f1
Add description to the patch
· d91869f6
Shayan Doust
authored
Jul 15, 2019
d91869f6
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
d91869f6
...
...
@@ -3,7 +3,9 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Shayan Doust <hello@shayandoust.me>
Section: science
Priority: optional
Build-Depends: debhelper (>= 12~)
Build-Depends: debhelper (>= 12~),
cmake,
libgzstream-dev
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/mmseqs2
Vcs-Git: https://salsa.debian.org/med-team/mmseqs2.git
...
...
debian/patches/series
0 → 100644
View file @
d91869f6
use_system_gzstream.patch
debian/patches/use_system_gzstream.patch
0 → 100644
View file @
d91869f6
Description: We use libgzstream-dev instead of that in lib
Author: Shayan Doust <hello@shayandoust.me>
Last-Update: 2019-07-15
---
Index: mmseqs2/CMakeLists.txt
===================================================================
--- mmseqs2.orig/CMakeLists.txt
+++ mmseqs2/CMakeLists.txt
@@ -79,7 +79,6 @@
add_subdirectory(lib/tinyexpr EXCLUDE_FR
include_directories(lib)
include_directories(lib/kseq)
include_directories(lib/simd)
-include_directories(lib/gzstream)
include_directories(lib/alp)
include_directories(lib/cacode)
include_directories(lib/ksw2)
Index: mmseqs2/src/CMakeLists.txt
===================================================================
--- mmseqs2.orig/src/CMakeLists.txt
+++ mmseqs2/src/CMakeLists.txt
@@ -144,6 +144,9 @@
endif ()
# tinyexpr
target_link_libraries(mmseqs-framework tinyexpr)
+# System-wide gzstream
+target_link_libraries(mmseqs-framework gzstream)
+
find_package(ZLIB QUIET)
if (ZLIB_FOUND)
message("-- Found ZLIB")