As we discussed in the last meeting, we reset the ports tree and began from scratch, even though this change involves porting all the packages. Starting small and growing gradually, this approach will reduce build times and consequently lower energy consumption in a world affected by climate change. We will add new ports as users needs arise; ok h3artbl33d@
This commit is contained in:
parent
83a0aaf92c
commit
9a3af55370
59377 changed files with 98673 additions and 4712155 deletions
13
devel/meson/patches/patch-mesonbuild_dependencies_boost_py
Normal file
13
devel/meson/patches/patch-mesonbuild_dependencies_boost_py
Normal file
|
@ -0,0 +1,13 @@
|
|||
Index: mesonbuild/dependencies/boost.py
|
||||
--- mesonbuild/dependencies/boost.py.orig
|
||||
+++ mesonbuild/dependencies/boost.py
|
||||
@@ -594,7 +594,8 @@ class BoostDependency(SystemDependency):
|
||||
# mlog.debug(' - vscrt: {}'.format(vscrt))
|
||||
libs = [x for x in libs if x.static == self.static or not self.explicit_static]
|
||||
libs = [x for x in libs if x.mt == self.multithreading]
|
||||
- libs = [x for x in libs if x.version_matches(lib_vers)]
|
||||
+ if not mesonlib.is_openbsd():
|
||||
+ libs = [x for x in libs if x.version_matches(lib_vers)]
|
||||
libs = [x for x in libs if x.arch_matches(self.arch)]
|
||||
libs = [x for x in libs if x.vscrt_matches(vscrt)]
|
||||
libs = [x for x in libs if x.nvsuffix != 'dll'] # Only link to import libraries
|
Loading…
Add table
Add a link
Reference in a new issue