Skip to content

Commit

Permalink
configure: add missing unknown platform
Browse files Browse the repository at this point in the history
This prevents unnecessary automatic failures on *BSD

Signed-off-by: Marcello Seri <marcello.seri@gmail.com>
  • Loading branch information
mseri committed Jun 2, 2022
1 parent 2eebbc0 commit 5e1ce59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eigen/configure/configure.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ let detect_system_header =
#endif
#elif WIN32
#define PLATFORM_NAME "windows"
#else
#define PLATFORM_NAME "unknown"
#endif
|}

Expand Down
2 changes: 2 additions & 0 deletions eigen_cpp/configure/configure.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ let detect_system_header =
#endif
#elif WIN32
#define PLATFORM_NAME "windows"
#else
#define PLATFORM_NAME "unknown"
#endif
|}

Expand Down

0 comments on commit 5e1ce59

Please sign in to comment.