diff options
author | Gleb Popov <arrowd@FreeBSD.org> | 2025-09-06 22:51:41 +0300 |
---|---|---|
committer | Gleb Popov <arrowd@FreeBSD.org> | 2025-09-06 23:01:19 +0300 |
commit | 049a620ca207ac3fdcb7493cfbaaa688db9bf16d (patch) | |
tree | 6c4df46e07ff014bcff78e32ce427f3e17b64e13 | |
parent | math/coin-or-metis: Fix building with Flang (diff) |
math/hsl: Constrain to gfortran
-rw-r--r-- | math/hsl/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/hsl/Makefile b/math/hsl/Makefile index c19d7dae3f87..f86dcd5285ec 100644 --- a/math/hsl/Makefile +++ b/math/hsl/Makefile @@ -10,7 +10,9 @@ WWW= https://github.com/coin-or-tools/ThirdParty-HSL LICENSE= EPL -USES= fortran gmake libtool pkgconfig +# Flang can't be used because the project bundles too old libtool and +# running autoreconf is too painful +USES= fortran:gfortran gmake libtool pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes |