View | Details | Raw Unified | Return to bug 97572
Collapse All | Expand All

(-)files/patch-filehandler.cpp (+14 lines)
Added Link Here
1
--- filehandler.cpp.orig	Sat Sep 17 17:28:48 2005
2
+++ filehandler.cpp	Sun May 21 20:00:02 2006
3
@@ -1,5 +1,11 @@
4
 #include "filehandler.h"
5
+#include <stdio.h>
6
+#include <unistd.h>
7
 #include <sys/stat.h>
8
+
9
+#ifndef X_OK
10
+#define X_OK  0x01
11
+#endif
12
 
13
 bool UFileHandler::move(const std::string &sOriginal, const std::string &sDestination)
14
 {
(-)files/patch-settings.cpp (+8 lines)
Added Link Here
1
--- settings.cpp.orig	Sun Mar 27 14:36:58 2005
2
+++ settings.cpp	Sun May 21 19:56:07 2006
3
@@ -1,3 +1,5 @@
4
+#include <stdio.h>
5
+
6
 #include "settings.h"
7
 #include "filehandler.h"
8
 
(-)files/patch-timemonitor.h (+9 lines)
Added Link Here
1
--- timemonitor.h.orig	Mon Sep 22 14:54:23 2003
2
+++ timemonitor.h	Sun May 21 19:57:14 2006
3
@@ -1,5 +1,6 @@
4
 #ifndef TIMEMONITOR_H
5
 #define TIMEMONITOR_H
6
+#include <time.h>
7
 #include <string>
8
 #include <vector>
9
 

Return to bug 97572