diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2014-09-07 16:34:04 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2014-09-07 16:34:04 +0000 |
| commit | 36211f93eb358ed51f9f6229b4942df037fbf2f1 (patch) | |
| tree | eaecc892fc0ddbc11d452a10fed244bf212cd92d /src | |
| parent | Formatting (diff) | |
| download | inkscape-36211f93eb358ed51f9f6229b4942df037fbf2f1.tar.gz inkscape-36211f93eb358ed51f9f6229b4942df037fbf2f1.zip | |
Add "HAVE_GLIBMM_THREADS_H" check to fillet-chamfer
(bzr r13341.1.200)
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/lpe-fillet-chamfer.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/live_effects/lpe-fillet-chamfer.h b/src/live_effects/lpe-fillet-chamfer.h index 420425650..2c1d83b2b 100644 --- a/src/live_effects/lpe-fillet-chamfer.h +++ b/src/live_effects/lpe-fillet-chamfer.h @@ -15,7 +15,13 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#include <glibmm/threads.h> +#if HAVE_CONFIG_H +# include "config.h" +#endif + +#if defined(GLIBMM_DISABLE_DEPRECATED) && defined(HAVE_GLIBMM_THREADS_H) +# include <glibmm/threads.h> +#endif #include "live_effects/parameter/enum.h" #include "live_effects/parameter/bool.h" |
