Commit bb3de4cf authored by Andreas Tille's avatar Andreas Tille
Browse files

Add todo

parent fece47d9
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -7,6 +7,11 @@ blasr (5.3.2-1) UNRELEASED; urgency=medium
  * Point Vcs fields to salsa.debian.org
  * Standards-Version: 4.2.0
  * Build system switched from cmake to meson
  TODO:
    Determining dependency 'pbbam' with pkg-config executable '/usr/bin/pkg-config'
    Called `/usr/bin/pkg-config --modversion pbbam` -> 1
    meson.build:54:0: ERROR:  Native dependency 'pbbam' not found
  --> Provide pkg-config file in pbbam

 -- Andreas Tille <tille@debian.org>  Tue, 21 Aug 2018 16:37:31 +0200

+1 −0
Original line number Diff line number Diff line
# disable-gtest.patch
# cmake-utils.patch
use_debian_packaged_pblibs.patch
+15 −0
Original line number Diff line number Diff line
--- a/meson.build
+++ b/meson.build
@@ -51,10 +51,10 @@ blasr_thread_dep = dependency('threads',
 blasr_boost_dep = dependency('boost', required : true)
 
 # pbbam
-blasr_pbbam_dep = dependency('pbbam', fallback : ['pbbam', 'pbbam_dep'])
+blasr_pbbam_dep = dependency('pbbam',  required : true)
 
 # libblasr
-blasr_libblasr_dep = dependency('libblasr', fallback : ['blasr_libcpp', 'libblasr_dep'])
+blasr_libblasr_dep = dependency('libblasr', required : true)
 
 # zlib
 blasr_zlib_dep = dependency('zlib', required : true)