blob: 61de7d380e57b684e2c635b108a86995baf31a05 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- src/kburndvd.cpp.orig Thu Jan 5 06:04:49 2006
+++ src/kburndvd.cpp Thu Jan 5 06:05:18 2006
@@ -24,7 +24,11 @@
#include <qdir.h>
#include <kmessagebox.h>
#include <kprocess.h>
-#include <stdint.h>
+#ifdef HAVE_STDINT_H
+ #include <stdint.h>
+#elif defined(HAVE_INTTYPES_H)
+ #include <inttypes.h>
+#endif
#include <kfiledialog.h>
kBurnDVD::kBurnDVD()
|