mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
Please welcome a longawaited boost-* upgrade. It introduces a full support for OpenSSL3.0, Clang13+, C++17/C++20 standards and more. Since 1.74 release Boost library introduced some internal changes which breaks comsumers of outdated API. All failed consumers will be marked as BROKEN in separated commits. Special thanks for all community members who take a long survey with real environments testing. Changelogs: https://www.boost.org/users/history/version_1_73_0.html https://www.boost.org/users/history/version_1_74_0.html https://www.boost.org/users/history/version_1_75_0.html https://www.boost.org/users/history/version_1_76_0.html https://www.boost.org/users/history/version_1_77_0.html https://www.boost.org/users/history/version_1_78_0.html https://www.boost.org/users/history/version_1_79_0.html PR: 246106 Exp-runs by: antoine
17 lines
421 B
Text
17 lines
421 B
Text
--- libs/mpi/build/__init__.py.orig 2021-04-13 16:22:27 UTC
|
|
+++ libs/mpi/build/__init__.py
|
|
@@ -1,10 +1,12 @@
|
|
+from __future__ import absolute_import
|
|
+
|
|
import sys
|
|
if sys.platform == 'linux2':
|
|
import DLFCN as dl
|
|
flags = sys.getdlopenflags()
|
|
sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)
|
|
- import mpi
|
|
+ from . import mpi
|
|
sys.setdlopenflags(flags)
|
|
else:
|
|
- import mpi
|
|
+ from . import mpi
|
|
|