diff options
author | Ross Burton <ross.burton@intel.com> | 2019-07-09 11:50:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-10 09:56:22 +0100 |
commit | 7bd06c53abca0c7dead74b0c160f05bdafdab8fb (patch) | |
tree | 38ca2555112192bd27f68eb8adedf6adf8490a07 /meta/recipes-multimedia/libsndfile | |
parent | 49f3519181c2a69d49df1479dbdb61b783d4efe3 (diff) | |
download | poky-7bd06c53abca0c7dead74b0c160f05bdafdab8fb.tar.gz |
libsndfile1: remove redundant autoconf seeding
Twelve years ago libsndfile was badly detecting large file handling and
generating bad code[1]. The detection code in libsndfile has had many fixes
since then and this isn't needed anymore (verified by comparing config.h when
built for qemuarm).
[1] https://git.openembedded.org/openembedded/commit/?id=875cfc6f23ae68c6215bf32eb01a486f0387cb92
(From OE-Core rev: 86f3a3ce6a80da66c7a53e7cb794c17230bd466d)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/libsndfile')
-rw-r--r-- | meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb index 7dfee4e96f..ffb45855a4 100644 --- a/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb +++ b/meta/recipes-multimedia/libsndfile/libsndfile1_1.0.28.bb | |||
@@ -33,9 +33,3 @@ PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" | |||
33 | PACKAGECONFIG[regtest] = "--enable-sqlite,--disable-sqlite,sqlite3" | 33 | PACKAGECONFIG[regtest] = "--enable-sqlite,--disable-sqlite,sqlite3" |
34 | 34 | ||
35 | inherit autotools lib_package pkgconfig | 35 | inherit autotools lib_package pkgconfig |
36 | |||
37 | do_configure_prepend_arm() { | ||
38 | export ac_cv_sys_largefile_source=1 | ||
39 | export ac_cv_sys_file_offset_bits=64 | ||
40 | } | ||
41 | |||