diff --git a/Fltk/menuWindow.cpp b/Fltk/menuWindow.cpp index ef667da9a34ba4b4a77d43d39783f3c699ee79f6..908262d67e4c7fc72652322146777cb7fb8a92ff 100644 --- a/Fltk/menuWindow.cpp +++ b/Fltk/menuWindow.cpp @@ -54,6 +54,9 @@ typedef unsigned long intptr_t; #include "Generator.h" #include "HighOrder.h" #include "Field.h" +#if defined(HAVE_ONELAB) +#include "onelab.h" +#endif static void file_new_cb(Fl_Widget *w, void *data) { diff --git a/Fltk/onelabWindow.cpp b/Fltk/onelabWindow.cpp index 9209b8aa5f5f19aba50bef274b80743f7886c0c7..3aada903e0871304e012f5e4675c095c8fbdd4d6 100644 --- a/Fltk/onelabWindow.cpp +++ b/Fltk/onelabWindow.cpp @@ -7,6 +7,10 @@ #include "GmshConfig.h" #include "GmshMessage.h" +#if defined(HAVE_ONELAB) +#include "onelab.h" +#endif + #if defined(HAVE_ONELAB) && (FL_MAJOR_VERSION == 1) && (FL_MINOR_VERSION == 3) #include <FL/Fl_Check_Button.H> @@ -30,7 +34,6 @@ #include "paletteWindow.h" #include "menuWindow.h" #include "fileDialogs.h" -#include "onelab.h" #include "onelabWindow.h" // This file contains the Gmsh/FLTK specific parts of the OneLab @@ -1020,6 +1023,20 @@ void solver_cb(Fl_Widget *w, void *data) #else +#if defined(HAVE_ONELAB) +bool onelab::localNetworkClient::run(const std::string &what) +{ + Msg::Error("The solver interface requires OneLab and FLTK 1.3"); + return false; +} + +bool onelab::localNetworkClient::kill() +{ + Msg::Error("The solver interface requires OneLab and FLTK 1.3"); + return false; +} +#endif + void solver_cb(Fl_Widget *w, void *data) { Msg::Error("The solver interface requires OneLab and FLTK 1.3");