comparison configure.in @ 3835:47ee5e57a350

[project @ 2001-05-23 06:41:58 by jwe]
author jwe
date Wed, 23 May 2001 06:41:58 +0000
parents ba548facf43b
children 07b99a1889cb
comparison
equal deleted inserted replaced
3834:414e694c9e6a 3835:47ee5e57a350
19 ### You should have received a copy of the GNU General Public License 19 ### You should have received a copy of the GNU General Public License
20 ### along with Octave; see the file COPYING. If not, write to the Free 20 ### along with Octave; see the file COPYING. If not, write to the Free
21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 ### 02111-1307, USA. 22 ### 02111-1307, USA.
23 23
24 AC_REVISION($Revision: 1.347 $) 24 AC_REVISION($Revision: 1.348 $)
25 AC_PREREQ(2.9) 25 AC_PREREQ(2.9)
26 AC_INIT(src/octave.cc) 26 AC_INIT(src/octave.cc)
27 AC_CONFIG_HEADER(config.h) 27 AC_CONFIG_HEADER(config.h)
28 28
29 AC_DEFINE(OCTAVE_SOURCE, 1) 29 AC_DEFINE(OCTAVE_SOURCE, 1)
672 ### (e.g. DXML) that we already linked to above...we detect this by 672 ### (e.g. DXML) that we already linked to above...we detect this by
673 ### doing AC_CHECK_FUNC if -llapack isn't found: 673 ### doing AC_CHECK_FUNC if -llapack isn't found:
674 674
675 AC_CHECK_LIB(lapack, $cheev_func, 675 AC_CHECK_LIB(lapack, $cheev_func,
676 [BLAS_LIBS="-llapack $BLAS_LIBS"; LAPACK_DIR=""], 676 [BLAS_LIBS="-llapack $BLAS_LIBS"; LAPACK_DIR=""],
677 AC_CHECK_FUNC($cheev_func, LAPACK_DIR=""), $BLAS_LIBS $FLIBS) 677 [AC_CHECK_FUNC($cheev_func, LAPACK_DIR="")],
678 [$BLAS_LIBS $FLIBS])
678 fi 679 fi
679 680
680 AC_SUBST(BLAS_LIBS) 681 AC_SUBST(BLAS_LIBS)
681 682
682 ### Handle dynamic linking and shared library options. 683 ### Handle dynamic linking and shared library options.