mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
f10fd70e5d
Diffs by James Jerkins and me, tested by afresh1@ and ok sthen@.
15 lines
305 B
Plaintext
15 lines
305 B
Plaintext
Index: src/BRepMesh/delabella.cpp
|
|
--- src/BRepMesh/delabella.cpp.orig
|
|
+++ src/BRepMesh/delabella.cpp
|
|
@@ -36,7 +36,9 @@ SOFTWARE.
|
|
#if (defined(__APPLE__))
|
|
#include <malloc/malloc.h>
|
|
#else
|
|
- #include <malloc.h>
|
|
+ #ifndef __OpenBSD__
|
|
+ #include <malloc.h>
|
|
+ #endif
|
|
#endif
|
|
|
|
#include <algorithm>
|