summaryrefslogtreecommitdiffstats
path: root/dilos/tdeadmin/debian/patches/dilos.patch
blob: aa71af2d1cf87a6d245815550e1140f2db2b0069 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Index: tdeadmin/kdat/ConfigureChecks.cmake
===================================================================
--- tdeadmin.orig/kdat/ConfigureChecks.cmake
+++ tdeadmin/kdat/ConfigureChecks.cmake
@@ -10,7 +10,7 @@ check_cxx_source_compiles("
     #include <sys/mtio.h>
     int main() {
       struct mtget tapeStatus;
-      return GMT_EOF ( tapeStatus.mt_gstat );
+      return GMT_EOF ( tapeStatus.mt_dsreg );
     }"
     HAVE_MTGET_GSTAT
 )
Index: tdeadmin/lilo-config/common/String.cc
===================================================================
--- tdeadmin.orig/lilo-config/common/String.cc
+++ tdeadmin/lilo-config/common/String.cc
@@ -27,7 +27,9 @@
 ** Bug reports and questions can be sent to kde-devel@kde.org
 */
 #define _GNU_SOURCE 1
+#ifndef	__dilos__
 #include <features.h>
+#endif	/* __dilos__ */
 #include <string.h>
 #include <string>
 #include "String.h"
Index: tdeadmin/lilo-config/common/Files.cc
===================================================================
--- tdeadmin.orig/lilo-config/common/Files.cc
+++ tdeadmin/lilo-config/common/Files.cc
@@ -35,8 +35,10 @@ StringList &Files::glob(String name, enu
 	glob_t gl;
 	int flags=0;
 	StringList *result;
+#ifndef	__dilos__
 	if(dotfiles)
 		flags |= GLOB_PERIOD;
+#endif	/* __dilos__ */
 	if(braces)
 		flags |= GLOB_BRACE;
 	::glob(name, flags, NULL, &gl);
Index: tdeadmin/lilo-config/common/lilo.cc
===================================================================
--- tdeadmin.orig/lilo-config/common/lilo.cc
+++ tdeadmin/lilo-config/common/lilo.cc
@@ -317,10 +317,15 @@ bool liloconf::probe()
 				char *tmp=tmpnam(NULL);
 				tmp=tmpnam(NULL);
 				mkdir(tmp, 0700);
+#ifdef	__dilos__
+				if(!mount(*it, tmp, MS_RDONLY|MS_NOSUID, "pcfs", NULL))
+					mp=tmp;
+#else	/* !__dilos__ */
 				if(!mount(*it, tmp, "msdos", MS_MGC_VAL|MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC, NULL))
 					mp=tmp;
 				else if(!mount(*it, mp, "vfat", MS_MGC_VAL|MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC, NULL))
 					mp=tmp;
+#endif	/* __dilos__ */
 			}
 			if(!mp.empty()) {
 				struct stat s;