mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 11:06:39 -04:00
11 lines
458 B
Python
11 lines
458 B
Python
--- extensions.py.orig 2024-04-03 02:23:20 UTC
|
|
+++ extensions.py
|
|
@@ -26,7 +26,7 @@ class NLOptBuild(build_ext):
|
|
except OSError:
|
|
raise RuntimeError("CMake must be installed")
|
|
|
|
- if platform.system() not in ("Windows", "Linux", "Darwin"):
|
|
+ if platform.system() not in ("Windows", "Linux", "Darwin", "FreeBSD"):
|
|
raise RuntimeError(f"Unsupported os: {platform.system()}")
|
|
|
|
for ext in self.extensions:
|