diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-01-01 21:04:44 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-01 21:09:02 -0800 |
commit | a92b6685b63fe50424d23d9ff0985d10207c1740 (patch) | |
tree | 61efcdae3e788ba2295199d114aa11fcbe91f1a0 /meta-multimedia | |
parent | 534d04af483d5f3d4fc73162c110449f169677a5 (diff) | |
download | meta-openembedded-a92b6685b63fe50424d23d9ff0985d10207c1740.tar.gz |
libcamera: Diable 64bit time_t on glibc targets
it overrides some of LFS64 functions in peculiar ways that it has to
undefine _FILE_OFFSET_BITS to silence the funtion definitions from glibc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r-- | meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.1.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.1.bb b/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.1.bb index 2b77d9937..483fe1507 100644 --- a/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.1.bb +++ b/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.1.bb | |||
@@ -64,3 +64,8 @@ do_recalculate_ipa_signatures_package() { | |||
64 | 64 | ||
65 | FILES:${PN} += " ${libdir}/v4l2-compat.so" | 65 | FILES:${PN} += " ${libdir}/v4l2-compat.so" |
66 | FILES:${PN}-gst = "${libdir}/gstreamer-1.0" | 66 | FILES:${PN}-gst = "${libdir}/gstreamer-1.0" |
67 | |||
68 | # libcamera-v4l2 explicitly sets _FILE_OFFSET_BITS=32 to get access to | ||
69 | # both 32 and 64 bit file APIs. | ||
70 | GLIBC_64BIT_TIME_FLAGS = "" | ||
71 | |||