diff options
Diffstat (limited to 'third_party/nix/meson.build')
-rw-r--r-- | third_party/nix/meson.build | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/third_party/nix/meson.build b/third_party/nix/meson.build index bd5cd8ce7e96..78b84617a521 100644 --- a/third_party/nix/meson.build +++ b/third_party/nix/meson.build @@ -417,8 +417,13 @@ libdl_dep = declare_dependency( #-------------------------------------------------- libbz2_dep = declare_dependency( dependencies : cpp.find_library('bz2'), - link_args : get_option('bz2_link_args')) + link_args : get_option('bz2_link_args')) +# Look for glog, a required dependency. +#-------------------------------------- +glog_dep = declare_dependency( + dependencies : cpp.find_library('glog'), + link_args : get_option('glog_link_args')) # Look for editline, a required dependency. #-------------------------------------------------- @@ -441,8 +446,6 @@ if not ( endif - - # Optional dependancies #============================================================================ @@ -485,8 +488,6 @@ if (get_option('with_s3')) endif - - # OS Specific checks #============================================================================ # Look for libsecppomp, required for Linux sandboxing. @@ -512,8 +513,6 @@ if (sys_name.contains('sunos')) endif - - # build #============================================================================ |