diff options
author | Will Wagner <will_wagner@carallon.com> | 2010-04-01 11:10:12 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-04-03 13:45:23 +0200 |
commit | f94830d0e5a409b2e2dc30a4e002c180fe09ec4e (patch) | |
tree | acf0f7e9f84d00bba862f0d36cf6fa1f2a2f9e2a /package/matchbox/libmatchbox-1.9-index-is-legacy.patch | |
parent | cb08cd64f0fe89d9551052cafeae96045441df51 (diff) | |
download | buildroot-novena-f94830d0e5a409b2e2dc30a4e002c180fe09ec4e.tar.gz buildroot-novena-f94830d0e5a409b2e2dc30a4e002c180fe09ec4e.zip |
matchbox: convert to autotools, fix build with start-notification, libxft
Signed-off-by: Will Wagner <will_wagner@carallon.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/matchbox/libmatchbox-1.9-index-is-legacy.patch')
-rw-r--r-- | package/matchbox/libmatchbox-1.9-index-is-legacy.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/matchbox/libmatchbox-1.9-index-is-legacy.patch b/package/matchbox/libmatchbox-1.9-index-is-legacy.patch deleted file mode 100644 index b486fb18d..000000000 --- a/package/matchbox/libmatchbox-1.9-index-is-legacy.patch +++ /dev/null @@ -1,35 +0,0 @@ -index() is a legacy function, not implemented in some uClibc -configurations. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - libmb/mbexp.c | 2 +- - libmb/mbmenu.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -Index: libmatchbox-1.9/libmb/mbexp.c -=================================================================== ---- libmatchbox-1.9.orig/libmb/mbexp.c -+++ libmatchbox-1.9/libmb/mbexp.c -@@ -492,7 +492,7 @@ - - /* get the family */ - -- if (index(spec, ',') != NULL || index(spec, '-') != NULL) -+ if (strchr(spec, ',') != NULL || strchr(spec, '-') != NULL) - has_comma_delim = True; - - while (!got_family) { -Index: libmatchbox-1.9/libmb/mbmenu.c -=================================================================== ---- libmatchbox-1.9.orig/libmb/mbmenu.c -+++ libmatchbox-1.9/libmb/mbmenu.c -@@ -433,7 +433,7 @@ - { - s = p; - found = NULL; -- while(index("/\0", *p) == NULL) p++; -+ while(strchr("/\0", *p) == NULL) p++; - if (*p != '\0') { *p = '\0'; p++; }; - - item = current->items; |