changeset 9707:6f5c4c82c5fc

avoid ugly F77 names in configure
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 08 Oct 2009 12:18:45 +0200
parents 71160b139b07
children 6f3ffe11d926
files ChangeLog configure.ac
diffstat 2 files changed, 9 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Oct 08 08:09:12 2009 +0200
+++ b/ChangeLog	Thu Oct 08 12:18:45 2009 +0200
@@ -1,3 +1,8 @@
+2009-10-08  Jaroslav Hajek  <highegg@gmail.com>
+
+	* configure.ac: Use the LANG argument to OCTAVE_CHECK_LIBRARY to avoid
+	ugly names.
+
 2009-09-23  Jaroslav Hajek  <highegg@gmail.com>
 
 	* NEWS: Update.
--- a/configure.ac	Thu Oct 08 08:09:12 2009 +0200
+++ b/configure.ac	Thu Oct 08 12:18:45 2009 +0200
@@ -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.