mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 22:23:14 +00:00
There are no remaining dependencies on liboil in oe-core (in most
cases it has been replaced by 'orc'). There is one recipe with a
dependency on liboil in meta-multimedia ('schroedinger').
Add the oe-core liboil recipe to meta-multimedia, in preparation for
removing it from oe-core.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
25 lines
668 B
Diff
25 lines
668 B
Diff
Upstream-Status: Inappropriate [disable feature]
|
|
|
|
--- liboil-0.3.9/liboil/liboilfunction.c.old 2006-09-18 13:03:20.000000000 +0100
|
|
+++ liboil-0.3.9/liboil/liboilfunction.c 2006-09-18 13:04:10.000000000 +0100
|
|
@@ -345,7 +345,9 @@
|
|
return;
|
|
}
|
|
|
|
- test = oil_test_new (klass);
|
|
+ klass->chosen_impl = klass->reference_impl;
|
|
+ klass->func = klass->reference_impl->func;
|
|
+/* test = oil_test_new (klass);
|
|
if (test == NULL) {
|
|
OIL_ERROR ("failed to test function class %s", klass->name);
|
|
return;
|
|
@@ -385,7 +387,7 @@
|
|
klass->chosen_impl = min_impl;
|
|
klass->func = min_impl->func;
|
|
|
|
- oil_test_free (test);
|
|
+ oil_test_free (test);*/
|
|
}
|
|
|
|
static void
|