changeset 10279:323c9cbbd02a

fix gnulib includes
author John W. Eaton <jwe@octave.org>
date Mon, 08 Feb 2010 17:35:04 -0500
parents 4a278982c0fe
children b122dd3075ce
files liboctave/ChangeLog liboctave/file-ops.cc liboctave/oct-time.cc
diffstat 3 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Mon Feb 08 17:30:23 2010 -0500
+++ b/liboctave/ChangeLog	Mon Feb 08 17:35:04 2010 -0500
@@ -1,3 +1,8 @@
+2010-02-08  John W. Eaton  <jwe@octave.org>
+
+	* oct-time.cc: Include "strftime.h", not <strftime.h>.
+	* file-ops.cc: Include "pathmax.h", not <pathmax.h>.
+
 2010-02-08  John W. Eaton  <jwe@octave.org>
 
 	* oct-env.cc (octave_env::prog_invocation_name): Rename from
--- a/liboctave/file-ops.cc	Mon Feb 08 17:30:23 2010 -0500
+++ b/liboctave/file-ops.cc	Mon Feb 08 17:35:04 2010 -0500
@@ -37,7 +37,7 @@
 #include <sys/types.h>
 #include <unistd.h>
 
-#include <pathmax.h>
+#include "pathmax.h"
 
 #include "dir-ops.h"
 #include "file-ops.h"
--- a/liboctave/oct-time.cc	Mon Feb 08 17:30:23 2010 -0500
+++ b/liboctave/oct-time.cc	Mon Feb 08 17:35:04 2010 -0500
@@ -31,7 +31,7 @@
 #include <sys/types.h>
 #include <unistd.h>
 
-#include <strftime.h>
+#include "strftime.h"
 
 #include "lo-error.h"
 #include "lo-math.h"