gnash-minimal cvs: fix missing trunc() definition, https://savannah.gnu.org/bugs...
authorKoen Kooi <koen@openembedded.org>
Tue, 2 Sep 2008 14:50:48 +0000 (14:50 +0000)
committerKoen Kooi <koen@openembedded.org>
Tue, 2 Sep 2008 14:50:48 +0000 (14:50 +0000)
packages/gnash/files/fix-trunc.diff [new file with mode: 0644]
packages/gnash/gnash-minimal_cvs.bb

diff --git a/packages/gnash/files/fix-trunc.diff b/packages/gnash/files/fix-trunc.diff
new file mode 100644 (file)
index 0000000..a01ca31
--- /dev/null
@@ -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
index ba9e2af..992998b 100644 (file)
@@ -6,5 +6,15 @@ PR = "r1"
 PV = "0.8.3+cvs${SRCDATE}"
 
 SRC_URI = "cvs://anonymous:anonymous@cvs.sv.gnu.org/sources/gnash;module=gnash"
-SRC_URI += "file://libtool-2.2.patch;patch=1 file://libintl.patch;patch=1"
+SRC_URI += "file://libtool-2.2.patch;patch=1 \
+            file://libintl.patch;patch=1 \
+            file://fix-trunc.diff;patch=1"
+
 S = ${WORKDIR}/gnash
+
+
+do_configure_prepend() {
+       sed -i -e 's:dnl AC_CHECK_LIB(m, trunc:AC_CHECK_LIB(m, trunc:g' ${S}/configure.ac
+}
+
+