diff options
| author | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-05-16 21:53:59 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-05-16 21:53:59 +0000 |
| commit | c0df405028494695ebd0b0a497c7526a2520cafd (patch) | |
| tree | 8cc1474082ec0cf20c74c6555f2df31b008fd63c /src | |
| parent | fix compliance test pservers-pattern-03-f - using fallback when pattern is empty (diff) | |
| download | inkscape-c0df405028494695ebd0b0a497c7526a2520cafd.tar.gz inkscape-c0df405028494695ebd0b0a497c7526a2520cafd.zip | |
Fix GTK+ 3 build
(bzr r13341.1.35)
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/lpe-bspline.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/live_effects/lpe-bspline.cpp b/src/live_effects/lpe-bspline.cpp index 454924d2b..b19b697c0 100644 --- a/src/live_effects/lpe-bspline.cpp +++ b/src/live_effects/lpe-bspline.cpp @@ -1,14 +1,27 @@ #define INKSCAPE_LPE_BSPLINE_C + /* * Released under GNU GPL, read the file 'COPYING' for more information */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#if WITH_GLIBMM_2_32 +# include <glibmm/threads.h> +#endif + #include <gtkmm/box.h> #include <gtkmm/entry.h> #include <gtkmm/box.h> #include <gtkmm/button.h> #include <gtkmm/checkbutton.h> + #include <glib.h> #include <glibmm/i18n.h> + + #include "display/curve.h" #include <2geom/bezier-curve.h> #include <2geom/point.h> |
