diff options
author | Kyle Guinn <elyk03@gmail.com> | 2021-01-02 18:13:12 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-01-17 08:45:06 +0700 |
commit | 1a10bdc3f54a859cc479c6beb2b635b2353276bc (patch) | |
tree | 80cd9b74f64579d18c4ec1659d2a73838cf0331b /academic/umfpack/patches | |
parent | 6ebddf9c54ae0684681addc0e54c8e16975a5fbd (diff) |
academic/umfpack: Updated for SuiteSparse 5.8.1.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic/umfpack/patches')
-rw-r--r-- | academic/umfpack/patches/autoconfiscate.diff | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/academic/umfpack/patches/autoconfiscate.diff b/academic/umfpack/patches/autoconfiscate.diff index b902c152813c..de66ade4173b 100644 --- a/academic/umfpack/patches/autoconfiscate.diff +++ b/academic/umfpack/patches/autoconfiscate.diff @@ -866,7 +866,7 @@ diff --git a/m4/ax_blas.m4 b/m4/ax_blas.m4 new file mode 100644 --- /dev/null +++ b/m4/ax_blas.m4 -@@ -0,0 +1,238 @@ +@@ -0,0 +1,241 @@ +# =========================================================================== +# https://www.gnu.org/software/autoconf-archive/ax_blas.html +# =========================================================================== @@ -905,6 +905,7 @@ new file mode 100644 +# LICENSE +# +# Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu> ++# Copyright (c) 2019 Geoffrey M. Oxberry <goxberry@gmail.com> +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the @@ -932,7 +933,7 @@ new file mode 100644 +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + -+#serial 16 ++#serial 17 + +AU_ALIAS([ACX_BLAS], [AX_BLAS]) +AC_DEFUN([AX_BLAS], [ @@ -946,7 +947,9 @@ new file mode 100644 +case $with_blas in + yes | "") ;; + no) ax_blas_ok=disable ;; -+ -* | */* | *.a | *.so | *.so.* | *.o) BLAS_LIBS="$with_blas" ;; ++ -* | */* | *.a | *.so | *.so.* | *.dylib | *.dylib.* | *.o) ++ BLAS_LIBS="$with_blas" ++ ;; + *) BLAS_LIBS="-l$with_blas" ;; +esac + |