Author: AlbrechtS Date: 2010-12-15 04:11:16 -0800 (Wed, 15 Dec 2010) New Revision: 8033 Log: Changed all #include "config.h" to #include <config.h>. This is necessary for out-of-source builds (e.g. CMake) to work correctly.
Modified: branches/branch-1.3/src/xutf8/utf8Input.c branches/branch-1.3/test/CubeMain.cxx branches/branch-1.3/test/cube.cxx branches/branch-1.3/test/fractals.cxx branches/branch-1.3/test/fullscreen.cxx branches/branch-1.3/test/gl_overlay.cxx branches/branch-1.3/test/glpuzzle.cxx branches/branch-1.3/test/list_visuals.cxx branches/branch-1.3/test/shape.cxx branches/branch-1.3/test/threads.cxx Modified: branches/branch-1.3/src/xutf8/utf8Input.c =================================================================== --- branches/branch-1.3/src/xutf8/utf8Input.c 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/src/xutf8/utf8Input.c 2010-12-15 12:11:16 UTC (rev 8033) @@ -25,7 +25,7 @@ #if !defined(WIN32) && !defined(__APPLE__) -#include "config.h" +#include <config.h> #include "../../FL/Xutf8.h" #include <X11/X.h> #include <X11/Xlib.h> Modified: branches/branch-1.3/test/CubeMain.cxx =================================================================== --- branches/branch-1.3/test/CubeMain.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/CubeMain.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -25,7 +25,7 @@ // http://www.fltk.org/str.php // -#include "config.h" +#include <config.h> #include <FL/Fl.H> #include "CubeViewUI.h" Modified: branches/branch-1.3/test/cube.cxx =================================================================== --- branches/branch-1.3/test/cube.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/cube.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -27,7 +27,7 @@ // http://www.fltk.org/str.php // -#include "config.h" +#include <config.h> #include <FL/Fl.H> #include <FL/Fl_Window.H> #include <FL/Fl_Box.H> Modified: branches/branch-1.3/test/fractals.cxx =================================================================== --- branches/branch-1.3/test/fractals.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/fractals.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -29,7 +29,7 @@ // http://www.fltk.org/str.php // -#include "config.h" +#include <config.h> #if !HAVE_GL || !HAVE_GL_GLU_H #include <FL/Fl.H> #include <FL/fl_message.H> Modified: branches/branch-1.3/test/fullscreen.cxx =================================================================== --- branches/branch-1.3/test/fullscreen.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/fullscreen.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -56,7 +56,7 @@ // http://www.fltk.org/str.php // -#include "config.h" +#include <config.h> #include <FL/Fl.H> #include <FL/Fl_Single_Window.H> #include <FL/Fl_Hor_Slider.H> Modified: branches/branch-1.3/test/gl_overlay.cxx =================================================================== --- branches/branch-1.3/test/gl_overlay.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/gl_overlay.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -25,7 +25,7 @@ // http://www.fltk.org/str.php // -#include "config.h" +#include <config.h> #include <FL/Fl.H> #include <FL/Fl_Window.H> #include <FL/Fl_Hor_Slider.H> Modified: branches/branch-1.3/test/glpuzzle.cxx =================================================================== --- branches/branch-1.3/test/glpuzzle.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/glpuzzle.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -29,7 +29,7 @@ // // this block added for fltk's distribtion so it will compile w/o OpenGL: -#include "config.h" +#include <config.h> #if !HAVE_GL || !HAVE_GL_GLU_H #include <FL/Fl.H> #include <FL/fl_message.H> Modified: branches/branch-1.3/test/list_visuals.cxx =================================================================== --- branches/branch-1.3/test/list_visuals.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/list_visuals.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -44,7 +44,7 @@ #else -#include "config.h" +#include <config.h> #ifndef Fl_H Modified: branches/branch-1.3/test/shape.cxx =================================================================== --- branches/branch-1.3/test/shape.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/shape.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -25,7 +25,7 @@ // http://www.fltk.org/str.php // -#include "config.h" +#include <config.h> #include <FL/Fl.H> #include <FL/Fl_Window.H> #include <FL/Fl_Hor_Slider.H> Modified: branches/branch-1.3/test/threads.cxx =================================================================== --- branches/branch-1.3/test/threads.cxx 2010-12-15 10:04:36 UTC (rev 8032) +++ branches/branch-1.3/test/threads.cxx 2010-12-15 12:11:16 UTC (rev 8033) @@ -25,7 +25,7 @@ // http://www.fltk.org/str.php // -#include "config.h" +#include <config.h> #if HAVE_PTHREAD || defined(WIN32) # include <FL/Fl.H> _______________________________________________ fltk-commit mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-commit
