Skip to content

Commit

Permalink
Fix asio build (#6108)
Browse files Browse the repository at this point in the history
asio depends on date_time, but date_time depends on container, exception, regex.
  • Loading branch information
yh-sb authored Jan 1, 2025
1 parent 63d263d commit aabc10c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/b/boost/libs.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
local sorted_libs = {
"asio",
"wave",
"url",
"type_erasure",
Expand Down Expand Up @@ -37,6 +38,9 @@ local sorted_libs = {
}

local libs_dep = {
asio = {
"date_time",
},
json = {
"container",
"system"
Expand Down Expand Up @@ -89,7 +93,11 @@ local libs_dep = {
"atomic",
"system"
},
date_time = { },
date_time = {
"container",
"exception",
"regex"
},
atomic = { },
url = {
"system"
Expand Down

0 comments on commit aabc10c

Please sign in to comment.