Ver código fonte

Fix asio build (#6108)

asio depends on date_time, but date_time depends on container, exception, regex.
yh-sb 7 meses atrás
pai
commit
aabc10c49e
1 arquivos alterados com 9 adições e 1 exclusões
  1. 9 1
      packages/b/boost/libs.lua

+ 9 - 1
packages/b/boost/libs.lua

@@ -1,4 +1,5 @@
 local sorted_libs = {
 local sorted_libs = {
+  "asio",
   "wave",
   "wave",
   "url",
   "url",
   "type_erasure",
   "type_erasure",
@@ -37,6 +38,9 @@ local sorted_libs = {
 }
 }
 
 
 local libs_dep = {
 local libs_dep = {
+  asio = {
+    "date_time",
+  },
   json = {
   json = {
     "container",
     "container",
     "system"
     "system"
@@ -89,7 +93,11 @@ local libs_dep = {
     "atomic",
     "atomic",
     "system"
     "system"
   },
   },
-  date_time = { },
+  date_time = {
+    "container",
+    "exception",
+    "regex"
+  },
   atomic = { },
   atomic = { },
   url = {
   url = {
     "system"
     "system"