diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-08-14 14:18:40 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-08-14 14:20:07 -0700 |
commit | bc159cc29ee70370aa85aa5628b13c21792cb4a7 (patch) | |
tree | b270cec32f37748f31e418ad4bbc692df105ff2b /recipes/gnome/libproxy_0.2.3.bb | |
parent | 94a9ba7988f0d6586ecaf0b722d6b320cfdf94ae (diff) |
libproxy: Define __USE_BSD before its needed.
This fixed a build break on uclibc where
it complained
armv5te-oe-linux-uclibcgnueabi/usr/include/stdlib.h:215:
error: expected '=', ',', ';', 'asm' or '__attribute__' before 'strtouq'
The reason is
u_quad_t is only defined if __USE_BSD is defined
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/gnome/libproxy_0.2.3.bb')
-rw-r--r-- | recipes/gnome/libproxy_0.2.3.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/gnome/libproxy_0.2.3.bb b/recipes/gnome/libproxy_0.2.3.bb index c04be6b5f3..fd405cba77 100644 --- a/recipes/gnome/libproxy_0.2.3.bb +++ b/recipes/gnome/libproxy_0.2.3.bb @@ -2,7 +2,11 @@ DESCRIPTION = "A library handling all the details of proxy configuration" LICENSE = "LGPL" DEPENDS = "libxmu gconf virtual/libx11" -SRC_URI = "http://libproxy.googlecode.com/files/libproxy-${PV}.tar.gz" +PR = "r1" + +SRC_URI = "http://libproxy.googlecode.com/files/libproxy-${PV}.tar.gz \ + file://libproxy-move-define-__USE_BSD.patch;patch=1 \ + " inherit autotools_stage |