From 6f2aaa351262701b564a65ef6ea66c3eec6a0aef Mon Sep 17 00:00:00 2001 From: Sebastian Held Date: Mon, 26 Mar 2012 21:46:08 +0200 Subject: [PATCH] fix compile error in setup.m for hdf5-1.8.x --- matlab/setup.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/matlab/setup.m b/matlab/setup.m index 60c7f6d..4ddff40 100644 --- a/matlab/setup.m +++ b/matlab/setup.m @@ -16,8 +16,10 @@ cd(dir); if isOctave() disp('compiling oct files') - mkoctfile -lhdf5 h5readatt_octave.cc + fflush(stdout) + mkoctfile -lhdf5 -DH5_USE_16_API h5readatt_octave.cc else + disp('Matlab does not need this function. It is Octave only.') end cd(current_path);