mirror of
https://github.com/NixOS/nix.git
synced 2025-11-14 22:42:41 +01:00
Fix downstream MinGW build by not looking for Boost Regex
(cherry picked from commit 6bdb5e8e09)
This commit is contained in:
parent
e7540a269b
commit
702112a41c
3 changed files with 15 additions and 3 deletions
|
|
@ -101,7 +101,11 @@ subdir('nix-meson-build-support/libatomic')
|
|||
|
||||
boost = dependency(
|
||||
'boost',
|
||||
modules : [ 'container', 'regex' ],
|
||||
modules : [
|
||||
'container',
|
||||
# Shouldn't list, because can header-only, and Meson currently looks for libs
|
||||
#'regex',
|
||||
],
|
||||
include_type : 'system',
|
||||
)
|
||||
# boost is a public dependency, but not a pkg-config dependency unfortunately, so we
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue