summaryrefslogtreecommitdiffstats
path: root/src/display
diff options
context:
space:
mode:
authorRalf Stephan <ralf@ark.in-berlin.de>2006-02-06 11:02:20 +0000
committerrwst <rwst@users.sourceforge.net>2006-02-06 11:02:20 +0000
commit60e3b0c88acbb204a4728e694fb2034e1a116023 (patch)
treed91e3009bab9bd8ef98600f114b7bfe141b6419a /src/display
parentopen Inkscape Preferences on doubleclick of toolbox button (more or less patch (diff)
downloadinkscape-60e3b0c88acbb204a4728e694fb2034e1a116023.tar.gz
inkscape-60e3b0c88acbb204a4728e694fb2034e1a116023.zip
revert to using inttypes.h instead of stdint.h
(bzr r94)
Diffstat (limited to 'src/display')
-rw-r--r--src/display/sp-canvas.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/display/sp-canvas.h b/src/display/sp-canvas.h
index 905c9272f..a9bf2e4c3 100644
--- a/src/display/sp-canvas.h
+++ b/src/display/sp-canvas.h
@@ -15,7 +15,18 @@
* Released under GNU GPL, read the file 'COPYING' for more information
*/
-#include <stdint.h>
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#ifdef HAVE_INTTYPES_H
+# include <inttypes.h>
+#else
+# ifdef HAVE_STDINT_H
+# include <stdint.h>
+# endif
+#endif
+
#include <glib/gtypes.h>
#include <gdk/gdkevents.h>
#include <gdk/gdkgc.h>