diff options
author | Koen Kooi <koen@openembedded.org> | 2006-12-07 09:17:32 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-12-07 09:17:32 +0000 |
commit | 707a04f0ab66d7d75cba6ea51c82aad705216cac (patch) | |
tree | 19607c51ad69fe94926894aedb2992d0c34b861d /packages | |
parent | 1914ff09f0381c251d00cbb9e7ad1090bd5e7848 (diff) |
cairo: update to the 1.3.6 snapshot and steal some magic from gcc to set option for FPU-less systems
Diffstat (limited to 'packages')
-rw-r--r-- | packages/cairo/cairo-fpu.inc | 6 | ||||
-rw-r--r-- | packages/cairo/cairo_1.3.6.bb | 20 |
2 files changed, 26 insertions, 0 deletions
diff --git a/packages/cairo/cairo-fpu.inc b/packages/cairo/cairo-fpu.inc new file mode 100644 index 0000000000..bdaf789799 --- /dev/null +++ b/packages/cairo/cairo-fpu.inc @@ -0,0 +1,6 @@ + +def get_cairo_fpu_setting(bb, d): + if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: + return "--disable-some-floating-point" + return "" + diff --git a/packages/cairo/cairo_1.3.6.bb b/packages/cairo/cairo_1.3.6.bb new file mode 100644 index 0000000000..d9454fadcd --- /dev/null +++ b/packages/cairo/cairo_1.3.6.bb @@ -0,0 +1,20 @@ +#This is a development snapshot, so lets hint OE to use the releases +DEFAULT_PREFERENCE = "-1" + +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "virtual/libx11 libsm libpng fontconfig libxrender" +DESCRIPTION = "Cairo graphics library" +LICENSE = "MPL LGPL" + +SRC_URI = "http://cairographics.org/snapshots/cairo-${PV}.tar.gz" + +#check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points +require cairo-fpu.inc +EXTRA_OECONF += "${@get_cairo_fpu_setting(bb, d)}" + +inherit autotools pkgconfig + +do_stage () { + autotools_stage_all +} |