summaryrefslogtreecommitdiff
path: root/x11-toolkits
diff options
context:
space:
mode:
authorMichael Nottebrock <lofi@FreeBSD.org>2004-05-15 15:49:16 +0000
committerMichael Nottebrock <lofi@FreeBSD.org>2004-05-15 15:49:16 +0000
commitbefd8a50255da2563828689788baec0b0110063d (patch)
tree9ec6334429bd17b1a347240967af97dea8c93db4 /x11-toolkits
parentAdd libRmath 1.9.0, the standalone math library from R. (diff)
Add an additional patch to make Qt compile on 4.x/Alpha.
Special thanks to Idar Tollefsen <idart@performancedesign.no> for giving me access to his Alpha/4.x machine for testing!
Notes
Notes: svn path=/head/; revision=109221
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/qt33/files/patch-src_tools_qlocale.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/x11-toolkits/qt33/files/patch-src_tools_qlocale.cpp b/x11-toolkits/qt33/files/patch-src_tools_qlocale.cpp
new file mode 100644
index 000000000000..1dac9dc1c3d5
--- /dev/null
+++ b/x11-toolkits/qt33/files/patch-src_tools_qlocale.cpp
@@ -0,0 +1,14 @@
+--- src/tools/qlocale.cpp.orig2 Sat May 15 14:59:00 2004
++++ src/tools/qlocale.cpp Sat May 15 15:10:21 2004
+@@ -83,6 +83,11 @@
+ static const bool ByteOrder = ((*((unsigned char *) &one) == 0) ? BigEndian : LittleEndian);
+ #endif
+
++#if !defined(INFINITY) && defined(Q_OS_FREEBSD)
++# define HUGE_VALF (float)HUGE_VAL
++# define INFINITY HUGE_VALF
++#endif
++
+ #if !defined(INFINITY)
+ static const unsigned char be_inf_bytes[] = { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 };
+ static const unsigned char le_inf_bytes[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f };