File: drop-zlib

package info (click to toggle)
berkeley-express 1.5.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 3,764 kB
  • sloc: cpp: 4,785; sh: 65; makefile: 11
file content (23 lines) | stat: -rw-r--r-- 762 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: drop unused zlib dependency
Author: Michael R. Crusoe <crusoe@ucdavis.edu>
--- berkeley-express.orig/CMakeLists.txt
+++ berkeley-express/CMakeLists.txt
@@ -60,7 +60,6 @@
       message(STATUS "Do not try to find libbamtools.a")
       set(BAMTOOLS_LIBRARIES bamtools)
     endif()
-	find_package(ZLIB REQUIRED)
 	set(WIN32_INT 0)
 endif(WIN32)
 
--- berkeley-express.orig/src/CMakeLists.txt
+++ berkeley-express/src/CMakeLists.txt
@@ -7,7 +7,7 @@
 
 add_executable(express ${sources} ${headers} ${PROTO_SOURCES} ${PROTO_HEADERS})
 
-set(LIBRARIES ${Boost_LIBRARIES} ${BAMTOOLS_LIBRARIES} ${ZLIB_LIBRARIES})
+set(LIBRARIES ${Boost_LIBRARIES} ${BAMTOOLS_LIBRARIES})
 
 if (GPERFTOOLS_TCMALLOC) 
    set(LIBRARIES ${LIBRARIES} "libtcmalloc_minimal.a")