summaryrefslogtreecommitdiffstats
path: root/dilos/tdeedu/debian/patches/dilos.patch
blob: 9becb70e31a06520ff18e789c9fc78bf46f7cbff (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Index: tdeedu/kig/misc/conic-common.cpp
===================================================================
--- tdeedu.orig/kig/misc/conic-common.cpp
+++ tdeedu/kig/misc/conic-common.cpp
@@ -28,7 +28,7 @@
 #include <cmath>
 #include <algorithm>
 
-#ifdef HAVE_IEEEFP_H
+#if	defined(HAVE_IEEEFP_H) || defined(__dilos__)
 #include <ieeefp.h>
 #endif
 
Index: tdeedu/cmake/modules/TDEMacros.cmake
===================================================================
--- tdeedu.orig/cmake/modules/TDEMacros.cmake
+++ tdeedu/cmake/modules/TDEMacros.cmake
@@ -833,7 +833,7 @@ macro( tde_add_library _arg_target )
 
   # set embedded archives
   if( _embed )
-    list( INSERT _link 0 -Wl,-whole-archive ${_embed} -Wl,-no-whole-archive )
+    list( INSERT _link 0 -Wl,-zallextract ${_embed} -Wl,-zdefaultextract )
   endif( _embed )
 
   # set link libraries
Index: tdeedu/kstars/kstars/indi/apogee/ApogeeLinux.h
===================================================================
--- tdeedu.orig/kstars/kstars/indi/apogee/ApogeeLinux.h
+++ tdeedu/kstars/kstars/indi/apogee/ApogeeLinux.h
@@ -10,6 +10,10 @@
 #ifndef APOGEELINUX_H
 #define APOGEELINUX_H
 
+#ifdef	__dilos__
+#include <sys/ioccom.h>
+#endif	/* __dilos__ */
+
 #define APISA_READ_USHORT	_IOR('a', 0x01, unsigned int)
 #define APISA_READ_LINE 	_IOR('a', 0x02, unsigned int)
 #define APISA_WRITE_USHORT	_IOW('a', 0x03, unsigned int)
Index: tdeedu/kstars/kstars/indi/apogee/ApnCamera.h
===================================================================
--- tdeedu.orig/kstars/kstars/indi/apogee/ApnCamera.h
+++ tdeedu/kstars/kstars/indi/apogee/ApnCamera.h
@@ -13,6 +13,17 @@
 #if !defined(AFX_APNCAMERA_H__CF513996_359F_4103_BBA6_2C730AE2C301__INCLUDED_)
 #define AFX_APNCAMERA_H__CF513996_359F_4103_BBA6_2C730AE2C301__INCLUDED_
 
+#ifdef  __dilos__
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+#define ULONG   ulong
+#define	USHORT	ushort
+#define	PUSHORT	short unsigned int *
+#define Sleep   sleep
+#endif  /*__dilos__ */
+
 #include "Apogee.h"
 #include "Apn.h"
 #include "FpgaRegs.h"
Index: tdeedu/kig/misc/cubic-common.cc
===================================================================
--- tdeedu.orig/kig/misc/cubic-common.cc
+++ tdeedu/kig/misc/cubic-common.cc
@@ -21,7 +21,7 @@
 #include "kignumerics.h"
 #include "kigtransform.h"
 
-#ifdef HAVE_IEEEFP_H
+#if	defined(HAVE_IEEEFP_H) || defined(__dilos__)
 #include <ieeefp.h>
 #endif