summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2016-11-25 15:15:09 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2016-11-25 15:15:09 +0000
commit6fc796738d0f4c3622de361e746ed485db2879e9 (patch)
tree39a9afa6360bc002c5c42f73263598c622ee0cad /src
parente24409e3edf9e5fdea880510683ea8b30bb81897 (diff)
Fix build with configure --enable-cairo --enable-cairoext.
Add missing #include <config.h>, see this report in fltk.general: https://groups.google.com/forum/#!topic/fltkgeneral/x80qQ6wt0s4 git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12123 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Window.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx
index 66ec4ceca..278426000 100644
--- a/src/Fl_Window.cxx
+++ b/src/Fl_Window.cxx
@@ -20,6 +20,8 @@
// This is the system-independent portions. The huge amount of
// crap you need to do to communicate with X is in Fl_x.cxx, the
// equivalent (but totally different) crap for MSWindows is in Fl_win32.cxx
+
+#include <config.h>
#include <FL/Fl.H>
#include <FL/x.H>
#include <FL/Fl_Window_Driver.H>