Mercurial > hg > octave-nkf
changeset 3697:8ce0d75eb4e3
[project @ 2000-07-18 03:28:33 by jwe]
author | jwe |
---|---|
date | Tue, 18 Jul 2000 03:28:34 +0000 |
parents | 5a7174ebc684 |
children | 22c94c038d48 |
files | ChangeLog configure.in src/ChangeLog src/load-save.cc |
diffstat | 4 files changed, 17 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-07-17 Joao Cardoso <jcardoso@inescn.pt> + + * configure.in (LIBGLOB): Set to be the two object files in the + glob directory instead of libglob.a. + 2000-07-05 Steven G. Johnson <stevenj@gil-galad.mit.edu> * Use BLAS_LIBS to save the names of BLAS libraries instead of
--- a/configure.in +++ b/configure.in @@ -21,7 +21,7 @@ ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA ### 02111-1307, USA. -AC_REVISION($Revision: 1.331 $) +AC_REVISION($Revision: 1.332 $) AC_PREREQ(2.9) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -861,9 +861,12 @@ AC_MSG_ERROR([I couldn't find termios.h, termio.h, or sgtty.h!]) fi +## I'm told that setting LIBGLOB to be $(TOPDIR)/glob/libglob.a causes +## trouble on SCO systems, but setting it to be the two object files +## avoids the problem. GLOB_DIR=glob -LIBGLOB='$(TOPDIR)/glob/libglob.$(LIBEXT)' +LIBGLOB='$(TOPDIR)/glob/glob.o $(TOPDIR)/glob/fnmatch.o' GLOB_INCFLAGS='-I$(top_srcdir)/glob -I$(TOPDIR)/glob' if test "$ac_cv_header_fnmatch_h" = yes \ && test "$ac_cv_header_glob_h" = yes; then
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2000-07-17 John W. Eaton <jwe@bevo.che.wisc.edu> + + * load-save.cc (get_file_format): Call read_mat5_binary_file_header + with third arg true instead of false, so we don't barf if the file + is not a matlab v5 binary file. + 2000-07-14 John W. Eaton <jwe@bevo.che.wisc.edu> * Makefile.in (octave): Link to ../libcruft/blas-xtra/xerbla.o here.