diff options
| author | Philip Balister <philip@balister.org> | 2015-04-23 12:48:33 -0400 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-05-13 14:34:18 +0200 |
| commit | 738bc2733b8bfa74c6b331de9676fc9aa1313b81 (patch) | |
| tree | 7ebff0e8c948a6e71e563e9c5430f44a58a530d1 /meta-oe/recipes-navigation/gpsd/gpsd-3.14/0001-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch | |
| parent | c625112dc786bc3bbf65bd1c5c6d53280295533b (diff) | |
| download | meta-openembedded-738bc2733b8bfa74c6b331de9676fc9aa1313b81.tar.gz | |
gpsd: Update to 3.14.
* _NO_ATOMICS patches are from upstream
* Update the SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch
* Fix some QA warnings
* Add PACKAGECONFIG for qt support
Signed-off-by: Philip Balister <philip@balister.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-navigation/gpsd/gpsd-3.14/0001-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch')
| -rw-r--r-- | meta-oe/recipes-navigation/gpsd/gpsd-3.14/0001-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd-3.14/0001-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch b/meta-oe/recipes-navigation/gpsd/gpsd-3.14/0001-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch new file mode 100644 index 0000000000..c4134f4b58 --- /dev/null +++ b/meta-oe/recipes-navigation/gpsd/gpsd-3.14/0001-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | From 3c5fb3a8691ac711ea93edf8e0b42bffc62b197e Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
| 3 | Date: Tue, 24 Apr 2012 11:52:35 +0200 | ||
| 4 | Subject: [PATCH 1/4] SConstruct: respect sysroot also in SPLINTOPTS | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [embedded specific] | ||
| 7 | |||
| 8 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
| 9 | Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | ||
| 10 | Signed-off-by: Peter A. Bigot <pab@pabigot.com> | ||
| 11 | --- | ||
| 12 | SConstruct | 5 ++++- | ||
| 13 | 1 file changed, 4 insertions(+), 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/SConstruct b/SConstruct | ||
| 16 | index 14e2f59..f0cafa8 100644 | ||
| 17 | --- a/SConstruct | ||
| 18 | +++ b/SConstruct | ||
| 19 | @@ -1414,7 +1414,10 @@ def Utility(target, source, action): | ||
| 20 | # Report splint warnings | ||
| 21 | # Note: test_bits.c is unsplintable because of the PRI64 macros. | ||
| 22 | # If you get preprocessor or fatal errors, add +showscan. | ||
| 23 | -splintopts = "-I/usr/include/libusb-1.0 +quiet" | ||
| 24 | +if not env['sysroot']: | ||
| 25 | + splintopts = "-I/usr/include/libusb-1.0 +quiet" | ||
| 26 | +else: | ||
| 27 | + splintopts = "-I%s/usr/include/libusb-1.0 +quiet" % env['sysroot'] | ||
| 28 | # splint does not know about multi-arch, work around that | ||
| 29 | ma_status, ma = _getstatusoutput('dpkg-architecture -qDEB_HOST_MULTIARCH') | ||
| 30 | if ma_status == 0: | ||
| 31 | -- | ||
| 32 | 1.8.5.5 | ||
| 33 | |||
