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	Sat Jan 04 21:56:37 2003 +0000
+++ b/ChangeLog	Sun Jan 05 06:30:44 2003 +0000
@@ -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	Sat Jan 04 21:56:37 2003 +0000
+++ b/liboctave/ChangeLog	Sun Jan 05 06:30:44 2003 +0000
@@ -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	Sat Jan 04 21:56:37 2003 +0000
+++ b/liboctave/lo-cutils.c	Sun Jan 05 06:30:44 2003 +0000
@@ -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	Sat Jan 04 21:56:37 2003 +0000
+++ b/octMakefile.in	Sun Jan 05 06:30:44 2003 +0000
@@ -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] \