|
From: | Aidan Macdonald |
Subject: | liboctave-dev: #include bugs |
Date: | Wed, 4 Feb 2015 19:14:25 -0800 |
/usr/include/octave-3.8.1/octave/oct.h:31:20: fatal error: config.h: No such file or directory#include <config.h>
#include <config.h> ==> #include "config.h"
And I fixed it in comment-list.h by changing/usr/include/octave-3.8.1/octave/comment-list.h:28:23: fatal error: base-list.h: No such file or directory#include <base-list.h>
#include <base-list.h> ==> #include "base-list.h"
Which I fixed in file-io.h by adding/usr/include/octave-3.8.1/octave/file-io.h:30:8: error: ‘OCTINTERP_API’ does not name a typeextern OCTINTERP_API void initialize_file_io (void);^/usr/include/octave-3.8.1/octave/file-io.h:32:8: error: ‘OCTINTERP_API’ does not name a typeextern OCTINTERP_API void close_files (void);^/usr/include/octave-3.8.1/octave/file-io.h:34:8: error: ‘OCTINTERP_API’ does not name a typeextern OCTINTERP_API void mark_for_deletion (const std::string&);^/usr/include/octave-3.8.1/octave/file-io.h:36:8: error: ‘OCTINTERP_API’ does not name a typeextern OCTINTERP_API void cleanup_tmp_files (void);
after the line#include "config.h"
#define octave_file_io_h 1
[Prev in Thread] | Current Thread | [Next in Thread] |