File: 0007-added-header-files-to-hold-Unix-flavor-specific-conf.patch

package info (click to toggle)
povray 1%3A3.7.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 146,780 kB
  • sloc: cpp: 845,005; ansic: 122,118; sh: 34,206; pascal: 6,420; asm: 3,355; ada: 1,681; makefile: 1,387; cs: 879; awk: 590; perl: 245; xml: 95
file content (383 lines) | stat: -rw-r--r-- 17,078 bytes parent folder | download | duplicates (4)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
From 7807b5350e341ca11a35b8550e35972b7749d9ed Mon Sep 17 00:00:00 2001
From: Christoph Lipka <c-lipka@users.noreply.github.com>
Date: Mon, 16 Dec 2013 12:23:37 +0100
Subject: [PATCH] added header files to hold Unix flavor-specific config
 settings; also thrown out the unused fseek64 macro from both Unix and Windows
 syspovconfig.h; should fix GitHub issue #9.

corresponds to Perforce changes 6129, 6131, 6133.
---
 vfe/unix/syspovconfig.h       | 65 +++++++++++++++++++++++++++++---------
 vfe/unix/syspovconfig_bsd.h   | 72 +++++++++++++++++++++++++++++++++++++++++++
 vfe/unix/syspovconfig_linux.h | 58 ++++++++++++++++++++++++++++++++++
 vfe/unix/syspovconfig_osx.h   | 61 ++++++++++++++++++++++++++++++++++++
 vfe/unix/syspovconfig_posix.h | 71 ++++++++++++++++++++++++++++++++++++++++++
 vfe/win/syspovconfig.h        | 13 ++++----
 6 files changed, 319 insertions(+), 21 deletions(-)
 create mode 100644 vfe/unix/syspovconfig_bsd.h
 create mode 100644 vfe/unix/syspovconfig_linux.h
 create mode 100644 vfe/unix/syspovconfig_osx.h
 create mode 100644 vfe/unix/syspovconfig_posix.h

--- a/vfe/unix/syspovconfig.h
+++ b/vfe/unix/syspovconfig.h
@@ -36,8 +36,6 @@
 
 #define _FILE_OFFSET_BITS	64
 
-#define fseek64(stream,offset,whence) fseeko(stream,offset,whence)
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #else
@@ -108,8 +106,6 @@ using POV_TR1_NAMESPACE::weak_ptr;
 const int NULL=0;
 #endif
 
-#define POV_LONG long long
-
 #define DELETE_FILE(name)  unlink(name)
 
 #if defined (PATH_MAX)
@@ -130,10 +126,51 @@ const int NULL=0;
 #define METADATA_PLATFORM_STRING BUILD_ARCH
 #define METADATA_COMPILER_STRING COMPILER_VERSION
 
-#define DECLARE_THREAD_LOCAL_PTR(ptrType, ptrName)                __thread ptrType *ptrName
-#define IMPLEMENT_THREAD_LOCAL_PTR(ptrType, ptrName, ignore)      __thread ptrType *ptrName
-#define GET_THREAD_LOCAL_PTR(ptrName)                             (ptrName)
-#define SET_THREAD_LOCAL_PTR(ptrName, ptrValue)                   (ptrName = ptrValue)
+// Pull in additional settings depending on Unix flavor
+
+#if defined(_AIX)
+	// IBM AIX detected.
+	// Not officially supported yet; comment-out the following line to try with default POSIX settings.
+	#error IBM AIX detected, but not explicitly supported yet; proceed at your own risk.
+	#include "syspovconfig_posix.h"
+#elif defined(__hpux)
+	// Hewlett-Packard HP-UX detected.
+	// Not officially supported yet; comment-out the following line to try with default POSIX settings.
+	#error Hewlett-Packard HP-UX detected, but not explicitly supported yet; proceed at your own risk.
+	#include "syspovconfig_posix.h"
+#elif defined(__linux__)
+	// GNU/Linux detected.
+	#include "syspovconfig_linux.h"
+#elif defined(__APPLE__) && defined(__MACH__)
+	// Apple Mac OS X detected.
+	#include "syspovconfig_osx.h"
+#elif defined(__sun) && defined(__SVR4)
+	// Sun/Oracle Solaris detected.
+	// Not officially supported yet; comment-out the following line to try with default POSIX settings.
+	#error Sun/Oracle Solaris detected, but not explicitly supported yet; proceed at your own risk.
+	#include "syspovconfig_posix.h"
+#elif defined(__CYGWIN__)
+	// Cygwin detected.
+	// Not officially supported yet; comment-out the following line to try with default POSIX settings.
+	#error Cygwin detected, but not explicitly supported yet; proceed at your own risk.
+	#include "syspovconfig_posix.h"
+#elif defined(__unix__)
+	// Some Unix other than the above detected.
+	#include <sys/param.h>
+	#if defined(BSD)
+		// BSD-style Unix detected.
+		#include "syspovconfig_bsd.h"
+	#else
+		// Not officially supported yet; comment-out the following line to try with default POSIX settings.
+		#error Unix detected, but flavor not identified; proceed at your own risk.
+		#include "syspovconfig_posix.h"
+	#endif
+#else
+	// Doesn't look like a Unix at all.
+	// Comment-out the following line to try with default POSIX settings.
+	#error No Unix detected; proceed at your own risk.
+	#include "syspovconfig_posix.h"
+#endif
 
 #if defined(_AIX)
     // IBM AIX detected.
--- /dev/null
+++ b/vfe/unix/syspovconfig_bsd.h
@@ -0,0 +1,72 @@
+/*******************************************************************************
+ * syspovconfig_bsd.h
+ *
+ * This file contains Unix flavor-specific defines for compiling the VFE
+ * on BSD-style Unix systems.
+ *
+ * ---------------------------------------------------------------------------
+ * Persistence of Vision Ray Tracer ('POV-Ray') version 3.7.
+ * Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd.
+ *
+ * POV-Ray is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * POV-Ray is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * ---------------------------------------------------------------------------
+ * POV-Ray is based on the popular DKB raytracer version 2.12.
+ * DKBTrace was originally written by David K. Buck.
+ * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
+ * ---------------------------------------------------------------------------
+ * $File: //depot/povray/smp/vfe/unix/syspovconfig_bsd.h $
+ * $Revision: #2 $
+ * $Change: 6133 $
+ * $DateTime: 2013/11/25 15:28:53 $
+ * $Author: clipka $
+ *******************************************************************************/
+
+#ifndef __SYSPOVCONFIG_BSD_H__
+#define __SYSPOVCONFIG_BSD_H__
+
+#include <unistd.h>
+
+#if defined(_POSIX_V6_LPBIG_OFFBIG) || defined(_POSIX_V6_LP64_OFF64) || defined(_POSIX_V6_ILP32_OFFBIG)
+	// off_t is at least 64 bits
+	#define lseek64(handle,offset,whence) lseek(handle,offset,whence)
+#elif defined(_POSIX_V6_ILP32_OFF32)
+	// off_t is 32 bits
+	// Comment-out the following line to proceed anyway.
+	#error Image size will be limited to approx. 100 Megapixels. Proceed at your own risk.
+	#define lseek64(handle,offset,whence) lseek(handle,offset,whence)
+#else
+	// Unable to detect off_t size at compile-time; comment-out the following line to proceed anyway.
+	#error Image size may be limited to approx. 100 Megapixels. Proceed at your own risk.
+	#define lseek64(handle,offset,whence) lseek(handle,offset,whence)
+#endif
+
+// TODO - the POV_LONG stuff is just copied from the Posix settings; someone needs to verify universal BSD compatibility.
+#if defined(_POSIX_V6_LPBIG_OFFBIG) || defined(_POSIX_V6_LP64_OFF64)
+	// long is at least 64 bits.
+	#define POV_LONG long
+#elif defined(_POSIX_V6_ILP32_OFFBIG) || defined(_POSIX_V6_ILP32_OFF32)
+	// long is 32 bits.
+	#define POV_LONG long long
+#else
+	// Unable to detect long size at compile-time, assuming less than 64 bits.
+	#define POV_LONG long long
+#endif
+
+// TODO - the TLS stuff is just copied from the Linux settings; someone needs to verify universal BSD compatibility.
+#define DECLARE_THREAD_LOCAL_PTR(ptrType, ptrName)                __thread ptrType *ptrName
+#define IMPLEMENT_THREAD_LOCAL_PTR(ptrType, ptrName, ignore)      __thread ptrType *ptrName
+#define GET_THREAD_LOCAL_PTR(ptrName)                             (ptrName)
+#define SET_THREAD_LOCAL_PTR(ptrName, ptrValue)                   (ptrName = ptrValue)
+
+#endif
--- /dev/null
+++ b/vfe/unix/syspovconfig_linux.h
@@ -0,0 +1,58 @@
+/*******************************************************************************
+ * syspovconfig_linux.h
+ *
+ * This file contains Unix flavor-specific defines for compiling the VFE
+ * on GNU/Linux systems.
+ *
+ * ---------------------------------------------------------------------------
+ * Persistence of Vision Ray Tracer ('POV-Ray') version 3.7.
+ * Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd.
+ *
+ * POV-Ray is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * POV-Ray is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * ---------------------------------------------------------------------------
+ * POV-Ray is based on the popular DKB raytracer version 2.12.
+ * DKBTrace was originally written by David K. Buck.
+ * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
+ * ---------------------------------------------------------------------------
+ * $File: //depot/povray/smp/vfe/unix/syspovconfig_linux.h $
+ * $Revision: #1 $
+ * $Change: 6129 $
+ * $DateTime: 2013/11/25 11:09:30 $
+ * $Author: clipka $
+ *******************************************************************************/
+
+#ifndef __SYSPOVCONFIG_LINUX_H__
+#define __SYSPOVCONFIG_LINUX_H__
+
+#include <unistd.h>
+
+// lseek64 is natively supported on GNU/Linux systems.
+
+#if defined(_POSIX_V6_LPBIG_OFFBIG) || defined(_POSIX_V6_LP64_OFF64)
+	// long is at least 64 bits.
+	#define POV_LONG long
+#elif defined(_POSIX_V6_ILP32_OFFBIG) || defined(_POSIX_V6_ILP32_OFF32)
+	// long is 32 bits.
+	#define POV_LONG long long
+#else
+	// Unable to detect long size at compile-time, assuming less than 64 bits.
+	#define POV_LONG long long
+#endif
+
+#define DECLARE_THREAD_LOCAL_PTR(ptrType, ptrName)                __thread ptrType *ptrName
+#define IMPLEMENT_THREAD_LOCAL_PTR(ptrType, ptrName, ignore)      __thread ptrType *ptrName
+#define GET_THREAD_LOCAL_PTR(ptrName)                             (ptrName)
+#define SET_THREAD_LOCAL_PTR(ptrName, ptrValue)                   (ptrName = ptrValue)
+
+#endif
--- /dev/null
+++ b/vfe/unix/syspovconfig_osx.h
@@ -0,0 +1,61 @@
+/*******************************************************************************
+ * syspovconfig_osx.h
+ *
+ * This file contains Unix flavor-specific defines for compiling the VFE
+ * on MAC OS X systems.
+ *
+ * ---------------------------------------------------------------------------
+ * Persistence of Vision Ray Tracer ('POV-Ray') version 3.7.
+ * Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd.
+ *
+ * POV-Ray is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * POV-Ray is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * ---------------------------------------------------------------------------
+ * POV-Ray is based on the popular DKB raytracer version 2.12.
+ * DKBTrace was originally written by David K. Buck.
+ * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
+ * ---------------------------------------------------------------------------
+ * $File: //depot/povray/smp/vfe/unix/syspovconfig_osx.h $
+ * $Revision: #2 $
+ * $Change: 6133 $
+ * $DateTime: 2013/11/25 15:28:53 $
+ * $Author: clipka $
+ *******************************************************************************/
+
+#ifndef __SYSPOVCONFIG_OSX_H__
+#define __SYSPOVCONFIG_OSX_H__
+
+#include <unistd.h>
+
+// TODO - someone needs to verify that off_t is indeed always 64 bit on Mac OS X
+#define lseek64(handle,offset,whence) lseek(handle,offset,whence)
+
+// TODO - the POV_LONG stuff is just copied from the Posix settings; someone needs to test this on OS X.
+#if defined(_POSIX_V6_LPBIG_OFFBIG) || defined(_POSIX_V6_LP64_OFF64)
+	// long is at least 64 bits.
+	#define POV_LONG long
+#elif defined(_POSIX_V6_ILP32_OFFBIG) || defined(_POSIX_V6_ILP32_OFF32)
+	// long is 32 bits.
+	#define POV_LONG long long
+#else
+	// Unable to detect long size at compile-time, assuming less than 64 bits.
+	#define POV_LONG long long
+#endif
+
+// TODO - the TLS stuff is just copied from the Linux settings; someone needs to verify OS X compatibility.
+#define DECLARE_THREAD_LOCAL_PTR(ptrType, ptrName)                __thread ptrType *ptrName
+#define IMPLEMENT_THREAD_LOCAL_PTR(ptrType, ptrName, ignore)      __thread ptrType *ptrName
+#define GET_THREAD_LOCAL_PTR(ptrName)                             (ptrName)
+#define SET_THREAD_LOCAL_PTR(ptrName, ptrValue)                   (ptrName = ptrValue)
+
+#endif
--- /dev/null
+++ b/vfe/unix/syspovconfig_posix.h
@@ -0,0 +1,71 @@
+/*******************************************************************************
+ * syspovconfig_posix.h
+ *
+ * This file contains Unix flavor-specific defines for compiling the VFE
+ * on generic POSIX-conformant Unix systems.
+ *
+ * ---------------------------------------------------------------------------
+ * Persistence of Vision Ray Tracer ('POV-Ray') version 3.7.
+ * Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd.
+ *
+ * POV-Ray is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * POV-Ray is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * ---------------------------------------------------------------------------
+ * POV-Ray is based on the popular DKB raytracer version 2.12.
+ * DKBTrace was originally written by David K. Buck.
+ * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
+ * ---------------------------------------------------------------------------
+ * $File: //depot/povray/smp/vfe/unix/syspovconfig_posix.h $
+ * $Revision: #1 $
+ * $Change: 6129 $
+ * $DateTime: 2013/11/25 11:09:30 $
+ * $Author: clipka $
+ *******************************************************************************/
+
+#ifndef __SYSPOVCONFIG_POSIX_H__
+#define __SYSPOVCONFIG_POSIX_H__
+
+#include <unistd.h>
+
+#if defined(_POSIX_V6_LPBIG_OFFBIG) || defined(_POSIX_V6_LP64_OFF64) || defined(_POSIX_V6_ILP32_OFFBIG)
+	// off_t is at least 64 bits
+	#define lseek64(handle,offset,whence) lseek(handle,offset,whence)
+#elif defined(_POSIX_V6_ILP32_OFF32)
+	// off_t is 32 bits
+	// Comment-out the following line to proceed anyway.
+	#error Image size will be limited to approx. 100 Megapixels. Proceed at your own risk.
+	#define lseek64(handle,offset,whence) lseek(handle,offset,whence)
+#else
+	// Unable to detect off_t size at compile-time; comment-out the following line to proceed anyway.
+	#error Image size may be limited to approx. 100 Megapixels. Proceed at your own risk.
+	#define lseek64(handle,offset,whence) lseek(handle,offset,whence)
+#endif
+
+#if defined(_POSIX_V6_LPBIG_OFFBIG) || defined(_POSIX_V6_LP64_OFF64)
+	// long is at least 64 bits.
+	#define POV_LONG long
+#elif defined(_POSIX_V6_ILP32_OFFBIG) || defined(_POSIX_V6_ILP32_OFF32)
+	// long is 32 bits.
+	#define POV_LONG long long
+#else
+	// Unable to detect long size at compile-time, assuming less than 64 bits.
+	#define POV_LONG long long
+#endif
+
+// TODO - the TLS stuff is just copied from the Linux settings; someone needs to check universal POSIX compatibility.
+#define DECLARE_THREAD_LOCAL_PTR(ptrType, ptrName)                __thread ptrType *ptrName
+#define IMPLEMENT_THREAD_LOCAL_PTR(ptrType, ptrName, ignore)      __thread ptrType *ptrName
+#define GET_THREAD_LOCAL_PTR(ptrName)                             (ptrName)
+#define SET_THREAD_LOCAL_PTR(ptrName, ptrValue)                   (ptrName = ptrValue)
+
+#endif
--- a/vfe/win/syspovconfig.h
+++ b/vfe/win/syspovconfig.h
@@ -212,8 +212,7 @@ namespace povwin
 #pragma warning(pop)
 #endif
 
-#define fseek64(stream,offset,whence)       _fseeki64(stream,offset,whence)
-#define lseek64(handle,offset,whence)       _lseeki64(handle,offset,whence)
+#define lseek64(handle,offset,whence) _lseeki64(handle,offset,whence)
 
 namespace pov_base
 {