diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1 | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1')
3 files changed, 36 insertions, 0 deletions
diff --git a/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/fix-includes.patch b/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/fix-includes.patch new file mode 100644 index 0000000000..f041d45baf --- /dev/null +++ b/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/fix-includes.patch @@ -0,0 +1,11 @@ +--- src/daemon/gpsctl.c~ 2007-08-01 19:09:31.000000000 +0200 ++++ src/daemon/gpsctl.c 2007-08-01 19:09:31.000000000 +0200 +@@ -3,6 +3,7 @@ + * Alberto GarcĂa Hierro <skyhusker@rm-fr.net> + */ + ++#include <stdint.h> + #include <gps.h> + #include "gpsctl.h" + + diff --git a/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/gpsapi.patch b/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/gpsapi.patch new file mode 100644 index 0000000000..638a877b77 --- /dev/null +++ b/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/gpsapi.patch @@ -0,0 +1,13 @@ +--- prismstumbler-0.7.4pre1/src/daemon/gpsctl.c~ 2007-04-04 00:10:03.000000000 +0200 ++++ prismstumbler-0.7.4pre1/src/daemon/gpsctl.c 2007-04-04 00:10:03.000000000 +0200 +@@ -30,8 +30,8 @@ + if(!gps_conn) + return 0; + +- *lat = (float) gps_conn->newdata.latitude; +- *lon = (float) gps_conn->newdata.longitude; ++ *lat = (float) gps_conn->fix.latitude; ++ *lon = (float) gps_conn->fix.longitude; + return 1; + } + diff --git a/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/wireless.patch b/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/wireless.patch new file mode 100644 index 0000000000..dfa579f7b1 --- /dev/null +++ b/recipes/prismstumbler/prismstumbler-0.7.3+0.7.4pre1/wireless.patch @@ -0,0 +1,12 @@ +diff -ur prismstumbler-0.7.4pre1_old/src/daemon/cards.c prismstumbler-0.7.4pre1/src/daemon/cards.c +--- prismstumbler-0.7.4pre1_old/src/daemon/cards.c 2006-03-28 19:31:26.000000000 +0200 ++++ prismstumbler-0.7.4pre1/src/daemon/cards.c 2007-05-22 14:59:15.000000000 +0200 +@@ -9,6 +9,8 @@ + + #include <stdio.h> + #include <sys/socket.h> ++#include <linux/types.h> ++#include <net/if.h> + #include <linux/wireless.h> + #include <glib.h> + #include <string.h> |