diff options
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb index 70d38f4a1a..de2eeaf78d 100644 --- a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb +++ b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb | |||
@@ -7,7 +7,8 @@ LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=13;md5=05bab7c7ad899d85bfba60da1a127 | |||
7 | file://jpeglib.h;endline=16;md5=f67d70e547a2662c079781c72f877f72 \ | 7 | file://jpeglib.h;endline=16;md5=f67d70e547a2662c079781c72f877f72 \ |
8 | file://djpeg.c;endline=11;md5=b90b6d2b4119f9e5807cd273f525d2af \ | 8 | file://djpeg.c;endline=11;md5=b90b6d2b4119f9e5807cd273f525d2af \ |
9 | " | 9 | " |
10 | DEPENDS = "nasm-native" | 10 | DEPENDS_append_x86-64_class-target = " nasm-native" |
11 | DEPENDS_append_x86_class-target = " nasm-native" | ||
11 | 12 | ||
12 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \ | 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \ |
13 | file://fix-mips.patch" | 14 | file://fix-mips.patch" |
@@ -26,6 +27,9 @@ RCONFLICTS_${PN} += "jpeg" | |||
26 | 27 | ||
27 | inherit autotools pkgconfig | 28 | inherit autotools pkgconfig |
28 | 29 | ||
30 | # Add nasm-native dependency consistently for all build arches is hard | ||
31 | EXTRA_OECONF_append_class-native = " --without-simd" | ||
32 | |||
29 | # Work around missing x32 ABI support | 33 | # Work around missing x32 ABI support |
30 | EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", "--without-simd", "", d)}" | 34 | EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", "--without-simd", "", d)}" |
31 | 35 | ||
@@ -33,8 +37,8 @@ EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("TUNE_FEATURES", "mx32 | |||
33 | EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("MIPSPKGSFX_FPU", "-nf", "--without-simd", "", d)}" | 37 | EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("MIPSPKGSFX_FPU", "-nf", "--without-simd", "", d)}" |
34 | 38 | ||
35 | # Provide a workaround if Altivec unit is not present in PPC | 39 | # Provide a workaround if Altivec unit is not present in PPC |
36 | EXTRA_OECONF_append_class-target_powerpc = "${@bb.utils.contains("TUNE_FEATURES", "altivec", "", "--without-simd", d)}" | 40 | EXTRA_OECONF_append_class-target_powerpc = " ${@bb.utils.contains("TUNE_FEATURES", "altivec", "", "--without-simd", d)}" |
37 | EXTRA_OECONF_append_class-target_powerpc64 = "${@bb.utils.contains("TUNE_FEATURES", "altivec", "", "--without-simd", d)}" | 41 | EXTRA_OECONF_append_class-target_powerpc64 = " ${@bb.utils.contains("TUNE_FEATURES", "altivec", "", "--without-simd", d)}" |
38 | 42 | ||
39 | PACKAGES =+ "jpeg-tools libturbojpeg" | 43 | PACKAGES =+ "jpeg-tools libturbojpeg" |
40 | 44 | ||