Skip to content

Commit 35ad57d

Browse files
committed
Boost.system is no longer a module
1 parent 9cb4afc commit 35ad57d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test cases/failing/63 wrong boost module/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ if not dependency('boost', required: false).found()
66
endif
77

88
# abc doesn't exist
9-
linkdep = dependency('boost', modules : ['thread', 'system', 'test', 'abc'])
9+
linkdep = dependency('boost', modules : ['thread', 'test', 'abc'])

test cases/frameworks/1 boost/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ endif
1313
# within one project. The need to be independent of each other.
1414
# Use one without a library dependency and one with it.
1515

16-
linkdep = dependency('boost', static: s, modules : ['thread', 'system', 'date_time'])
16+
linkdep = dependency('boost', static: s, modules : ['thread', 'date_time'])
1717
testdep = dependency('boost', static: s, modules : ['unit_test_framework'])
1818
nomoddep = dependency('boost', static: s)
19-
extralibdep = dependency('boost', static: s, modules : ['thread', 'system', 'date_time', 'log_setup', 'log', 'filesystem', 'regex'])
19+
extralibdep = dependency('boost', static: s, modules : ['thread', 'date_time', 'log_setup', 'log', 'filesystem', 'regex'])
2020
notfound = dependency('boost', static: s, modules : ['this_should_not_exist_on_any_system'], required: false)
2121

2222
assert(not notfound.found())

0 commit comments

Comments
 (0)