# HG changeset patch # User Jaroslav Hajek # Date 1254997125 -7200 # Node ID 6f5c4c82c5fca83880900734bd2e9d0d3178a187 # Parent 71160b139b07ff094d28442f10cb278c3bf3f99c avoid ugly F77 names in configure diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-10-08 Jaroslav Hajek + + * configure.ac: Use the LANG argument to OCTAVE_CHECK_LIBRARY to avoid + ugly names. + 2009-09-23 Jaroslav Hajek * NEWS: Update. diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac @@ -903,8 +903,8 @@ OCTAVE_CHECK_LIBRARY(qrupdate, qrupdate, [qrupdate not found. The QR & Cholesky updating functions will be slow.], [], - [F77_FUNC(sqr1up,SQR1UP)], - [], [don't use qrupdate, disable QR & Cholesky updating functions]) + [sqr1up], + [Fortran 77], [don't use qrupdate, disable QR & Cholesky updating functions]) LIBS="$save_LIBS" # Check for AMD library @@ -998,8 +998,8 @@ OCTAVE_CHECK_LIBRARY(arpack, ARPACK, [arpack not found. The eigs function will be disabled.], [], - [F77_FUNC(dseupd,DSEUPD)], - [], [don't use the ARPACK library, disable eigs function]) + [dseupd], + [Fortran 77], [don't use the ARPACK library, disable eigs function]) LIBS="$save_LIBS" ### Handle shared library options.