summaryrefslogtreecommitdiff
path: root/packages/gnash/files
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2008-09-02 14:50:48 +0000
committerKoen Kooi <koen@openembedded.org>2008-09-02 14:50:48 +0000
commitc826cf9b7488b54130e7df6887851a7db2e9fed9 (patch)
treeb049f617d8bc1ab80f33c38dbaf7614896832e96 /packages/gnash/files
parentd1cf4ab9116fbea812d339d7f06c631927a446e4 (diff)
gnash-minimal cvs: fix missing trunc() definition, https://savannah.gnu.org/bugs/?24188
Diffstat (limited to 'packages/gnash/files')
-rw-r--r--packages/gnash/files/fix-trunc.diff13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/gnash/files/fix-trunc.diff b/packages/gnash/files/fix-trunc.diff
new file mode 100644
index 0000000000..a01ca311d0
--- /dev/null
+++ b/packages/gnash/files/fix-trunc.diff
@@ -0,0 +1,13 @@
+--- /tmp/utility.h 2008-09-02 16:35:44.000000000 +0200
++++ gnash/libbase/utility.h 2008-09-02 16:36:10.000000000 +0200
+@@ -327,6 +327,10 @@
+ #endif
+ }
+
++#ifndef HAVE_TRUNC
++inline double trunc(double x) { return (x < 0 ? -(std::floor(-x)) : std::floor(x)); }
++#endif
++
+ #endif // UTILITY_H
+
+