diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-24 21:43:59 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-24 22:00:59 +0200 |
commit | f52727e22d2b7e20cb5771ef8961d37ff2a25937 (patch) | |
tree | 62573d10fbec0f4ce633e0b8e4124a9dc94b55ad /package/gpsd/gpsd-fix-acs_map-compile-errors.patch | |
parent | 23c9aeccde52d30c26d92866be0b094793aba712 (diff) | |
download | buildroot-novena-f52727e22d2b7e20cb5771ef8961d37ff2a25937.tar.gz buildroot-novena-f52727e22d2b7e20cb5771ef8961d37ff2a25937.zip |
gpsd: fix build issues
The first patch gpsd-01-sconstruct-python-2.5-compat.patch is aimed at
fixing Python 2.5 compatibility issues such as:
http://autobuild.buildroot.org/results/844a7f8698567688eba094f64dd2bf5157efd994/build-end.log
The second patch gpsd-02-sconstruct-ncurses-config-path.patch
implements a proper mechanism to specify the path to
ncurse5-config. It obsoletes the previous
gpsd-fix-acs_map-compile-errors patch, and solves build problems such
as:
http://autobuild.buildroot.org/results/92ae3d53e8aa68d8b1a2eccad68c98f577cb6437/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Simon Dawson <spdawson@gmail.com>
Diffstat (limited to 'package/gpsd/gpsd-fix-acs_map-compile-errors.patch')
-rw-r--r-- | package/gpsd/gpsd-fix-acs_map-compile-errors.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/gpsd/gpsd-fix-acs_map-compile-errors.patch b/package/gpsd/gpsd-fix-acs_map-compile-errors.patch deleted file mode 100644 index 14d9287ee..000000000 --- a/package/gpsd/gpsd-fix-acs_map-compile-errors.patch +++ /dev/null @@ -1,29 +0,0 @@ -Hack gpsd to prevent undefined references to acs_map from ncurses. - -Signed-off-by: Simon Dawson <spdawson@gmail.com> -diff -Nurp a/gpsmon.c b/gpsmon.c ---- a/gpsmon.c 2012-05-18 09:45:37.000000000 +0100 -+++ b/gpsmon.c 2012-06-07 12:41:31.257807969 +0100 -@@ -24,6 +24,9 @@ - #include <unistd.h> - #endif /* S_SPLINT_S */ - -+/* Ugly hack to prevent undefined reference to acs_map */ -+unsigned long acs_map[128]; -+ - #include "gpsd_config.h" - #ifdef HAVE_BLUEZ - #include <bluetooth/bluetooth.h> -diff -Nurp a/monitor_nmea.c b/monitor_nmea.c ---- a/monitor_nmea.c 2011-11-22 08:49:33.000000000 +0000 -+++ b/monitor_nmea.c 2012-06-07 12:41:37.081807709 +0100 -@@ -15,6 +15,9 @@ - #include <unistd.h> - #endif /* S_SPLINT_S */ - -+/* Ugly hack to prevent undefined reference to acs_map */ -+unsigned long acs_map[128]; -+ - #include "gpsd.h" - #include "gpsmon.h" - #include "gpsdclient.h" |