Skip to content

Commit

Permalink
Looks like the BSD define isn't working for brlcad.org - try __FreeBSD__
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Sep 9, 2024
1 parent 357a608 commit 3353d24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions opennurbs/opennurbs_defines_cpp.patch
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ index 8d5f8830..1f60f588 100644
return EOF;
+#elif defined(BSD)
+ fcloseall();
+ return 0;
+#elif defined(__FreeBSD__)
+ fcloseall();
+ return 0;
#else
return fcloseall();
Expand Down

0 comments on commit 3353d24

Please sign in to comment.