File: meson.patch

package info (click to toggle)
pbseqlib 5.3.5%2Bdfsg-11
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 7,152 kB
  • sloc: cpp: 77,259; python: 331; sh: 103; makefile: 41
file content (25 lines) | stat: -rw-r--r-- 737 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Author: Andreas Tille <tille@debian.org>
Last-Update: 2019-12-13
Description: There is no point to check for gtest since its installed via Build-Depends

--- a/meson.build
+++ b/meson.build
@@ -60,12 +60,17 @@ libblasr_htslib_dep = dependency('htslib
 # clock_gettime on old glibc systems
 libblasr_rt_dep = cpp.find_library('rt', required : false)
 
+# Explicitely list required HDF5 components
+# hdf5_dep = dependency('hdf5',  language : 'c', required: true)
+hdf5_dep = dependency('hdf5', language : 'cpp', required : false, disabler: true)
+
 libblasr_deps = [
   libblasr_boost_dep,
   libblasr_pbbam_dep,
   libblasr_zlib_dep,
   libblasr_htslib_dep,
-  libblasr_rt_dep]
+  libblasr_rt_dep,
+  hdf5_dep]
 
 ##########
 # Config #