Mercurial > hg > octave-nkf
changeset 4290:73431774c0b7
[project @ 2003-01-05 06:30:44 by jwe]
author | jwe |
---|---|
date | Sun, 05 Jan 2003 06:30:44 +0000 |
parents | 9f5e54070c86 |
children | 0a87097e74ca |
files | ChangeLog liboctave/ChangeLog liboctave/lo-cutils.c octMakefile.in |
diffstat | 4 files changed, 17 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2003-01-04 John W. Eaton <jwe@bevo.che.wisc.edu> + * octMakefile.in (CONF_DISTFILES): Include acx_blas.m4 and + acx_lapack.m4. + * configure.in (BUILD_CC, BUILD_CFLAGS, BUILD_CXX, BUILD_CXXFLAGS): Kluge for Sun C/C++.
--- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,7 @@ +2003-01-05 John W. Eaton <jwe@bevo.che.wisc.edu> + + * lo-cutils.c: Define _XOPEN_SOURCE. + 2003-01-04 John W. Eaton <jwe@bevo.che.wisc.edu> * getopt.h: Update to version from kpathsearch, so we will install
--- a/liboctave/lo-cutils.c +++ b/liboctave/lo-cutils.c @@ -32,6 +32,13 @@ #include <config.h> #endif +/* This gives us a better chance of finding a prototype for strptime + on some systems. */ + +#if ! defined (_XOPEN_SOURCE) +#define _XOPEN_SOURCE +#endif + #ifdef HAVE_UNISTD_H #ifdef HAVE_SYS_TYPES_H #include <sys/types.h>
--- a/octMakefile.in +++ b/octMakefile.in @@ -19,9 +19,9 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_DATA = @INSTALL_DATA@ -CONF_DISTFILES = Makefile Makefile.in octMakefile.in Makeconf.in configure \ - configure.in config.guess config.sub aclocal.m4 config.h.in \ - install-sh autogen.sh +CONF_DISTFILES = Makefile Makefile.in octMakefile.in Makeconf.in \ + configure configure.in config.guess config.sub aclocal.m4 \ + acx_blas.m4 acx_lapack.m4 config.h.in install-sh autogen.sh DISTFILES = $(CONF_DISTFILES) \ BUGS COPYING FLEX.patch INSTALL INSTALL.OCTAVE NEWS NEWS.[0-9] \