diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-05-23 14:08:54 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-05-23 14:08:54 +0000 |
commit | d4740e0ebca2579c69ac6da6703c4d91472b39c1 (patch) | |
tree | b201aec9ca077c2c42afb74697b5ddf6b8841bd2 /meta-openmoko/packages | |
parent | 27e194b71491a1c40fa2b37b966a7a671f68b4d0 (diff) | |
download | poky-d4740e0ebca2579c69ac6da6703c4d91472b39c1.tar.gz |
libsndfile: merge with OE
Revision: a861d7ae9f7e1ef52c56fcb6017fe9b7c48dc72b
Ancestor: 3fe444996883cc54a95f94bd89d9fba641d08c20
Author: mickeyl@openembedded.org
Date: 2007-12-03T20:22:24
Branch: org.openembedded.dev
Modified files:
packages/libsndfile/libsndfile1_1.0.17.bb
ChangeLog:
libsndfile 1.0.17 needs an ugly hardcoded hack for some autofoo variables
otherwise it silently fails on runtime. all the ugly low level
research done by graeme@openmoko.org - thanks!
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4549 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-openmoko/packages')
-rw-r--r-- | meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb b/meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb index a010c51184..dc1b12fc4f 100644 --- a/meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb +++ b/meta-openmoko/packages/libsndfile/libsndfile1_1.0.17.bb | |||
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.mega-nerd.com/libsndfile" | |||
3 | AUTHOR = "Erik de Castro Lopo" | 3 | AUTHOR = "Erik de Castro Lopo" |
4 | SECTION = "libs/multimedia" | 4 | SECTION = "libs/multimedia" |
5 | LICENSE = "LGPL" | 5 | LICENSE = "LGPL" |
6 | PR = "r1" | 6 | PR = "r2" |
7 | 7 | ||
8 | SRC_URI = "http://www.mega-nerd.com/libsndfile/libsndfile-${PV}.tar.gz \ | 8 | SRC_URI = "http://www.mega-nerd.com/libsndfile/libsndfile-${PV}.tar.gz \ |
9 | file://add-cxx.patch;patch=1" | 9 | file://add-cxx.patch;patch=1" |
@@ -12,6 +12,12 @@ S = "${WORKDIR}/libsndfile-${PV}" | |||
12 | 12 | ||
13 | inherit autotools lib_package pkgconfig | 13 | inherit autotools lib_package pkgconfig |
14 | 14 | ||
15 | do_configure_prepend_arm() { | ||
16 | export ac_cv_sys_largefile_source=1 | ||
17 | export ac_cv_sys_file_offset_bits=64 | ||
18 | ac_cv_sizeof_off_t=8 | ||
19 | } | ||
20 | |||
15 | do_stage() { | 21 | do_stage() { |
16 | oe_libinstall -a -so -C src libsndfile ${STAGING_LIBDIR} | 22 | oe_libinstall -a -so -C src libsndfile ${STAGING_LIBDIR} |
17 | install -m 0644 ${S}/src/sndfile.h ${STAGING_INCDIR}/ | 23 | install -m 0644 ${S}/src/sndfile.h ${STAGING_INCDIR}/ |