aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fltk
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-01-15 10:26:18 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2010-01-15 10:27:55 +0100
commiteb0805d926c8cf4c1f48d21ee9402786c3209df9 (patch)
treeebd2ec752faa910731d9bf5ea72d338df502b15c /recipes/fltk
parentf34bd22758caf509bd2528d912f3d90e71411410 (diff)
downloadopenembedded-eb0805d926c8cf4c1f48d21ee9402786c3209df9.tar.gz
efltk: add missing patch
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes/fltk')
-rw-r--r--recipes/fltk/efltk/fix.void.cast.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/fltk/efltk/fix.void.cast.patch b/recipes/fltk/efltk/fix.void.cast.patch
new file mode 100644
index 0000000000..d66c77f867
--- /dev/null
+++ b/recipes/fltk/efltk/fix.void.cast.patch
@@ -0,0 +1,15 @@
+From:
+http://sourceforge.net/projects/ede/forums/forum/249614/topic/3458921
+
+diff -uNr efltk.orig/src/core/filename_list.cpp efltk/src/core/filename_list.cpp
+--- efltk.orig/src/core/filename_list.cpp 2007-11-16 14:17:51.000000000 +0100
++++ efltk/src/core/filename_list.cpp 2010-01-15 01:03:59.000000000 +0100
+@@ -59,7 +59,7 @@
+ // The vast majority of Unix systems want the sort function to have this
+ // prototype, most likely so that it can be passed to qsort without any
+ // changes:
+- return scandir(dir, list, 0, (int(*)(const void*,const void*))sort);
++ return scandir(dir, list, 0, (int(*)(const dirent **,const dirent **))sort);
+ #else
+ // This version is when we define our own scandir (WIN32 and perhaps
+ // some Unix systems) and apparently on Irix: