2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2011-03-07 18:21:18 +01:00
|
|
|
#
|
|
|
|
# libv4l
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2016-02-14 10:29:35 +01:00
|
|
|
LIBV4L_VERSION = 1.10.0
|
2011-03-07 18:21:18 +01:00
|
|
|
LIBV4L_SOURCE = v4l-utils-$(LIBV4L_VERSION).tar.bz2
|
2014-07-31 10:46:58 +02:00
|
|
|
LIBV4L_SITE = http://linuxtv.org/downloads/v4l-utils
|
2011-03-07 18:21:18 +01:00
|
|
|
LIBV4L_INSTALL_STAGING = YES
|
2014-07-05 23:07:40 +02:00
|
|
|
LIBV4L_DEPENDENCIES = host-pkgconf
|
2014-10-14 15:05:03 +02:00
|
|
|
LIBV4L_CONF_OPTS = --disable-doxygen-doc
|
2011-03-07 18:21:18 +01:00
|
|
|
|
libv4l: fix uclibc-ng configure/compile
With raspberrypi_defconfig:
libv4l2rds.c:256:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int i = 0; i < tuning->station_cnt; i++) {
^
libv4l2rds.c:256:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
>From build/libv4l-1.6.2/config.log:
configure:4709: checking for .../host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc option to accept ISO C99
configure:4858: .../host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc -std=gnu99 -c -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 conftest.c >&5
conftest.c:54:9: error: unknown type name 'wchar_t'
const wchar_t *name;
The C99 detection problem seems more related to missing wchar_t type support than the compiler option?
Adding LIBV4L_CONF_ENV = ac_cv_prog_cc_c99='-std=c99' gives a lot of compile errors like:
libv4lconvert.c: In function 'dev_ioctl':
processing/../libv4lsyscall-priv.h:85:10: error: 'SYS_ioctl' undeclared (first use in this function)
syscall(SYS_ioctl, (int)(fd), (unsigned long)(cmd), (void *)(arg))
^
libv4lconvert.c:43:9: note: in expansion of macro 'SYS_IOCTL'
return SYS_IOCTL(fd, cmd, arg);
^
processing/../libv4lsyscall-priv.h:85:10: note: each undeclared identifier is reported only once for each function it appears in
syscall(SYS_ioctl, (int)(fd), (unsigned long)(cmd), (void *)(arg))
^
libv4lconvert.c:43:9: note: in expansion of macro 'SYS_IOCTL'
return SYS_IOCTL(fd, cmd, arg);
^
Adding LIBV4L_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99' solves all configure/compile errors.
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-07-02 23:26:32 +02:00
|
|
|
# fix uclibc-ng configure/compile
|
|
|
|
LIBV4L_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
|
|
|
|
2014-07-05 23:07:40 +02:00
|
|
|
# v4l-utils components have different licences, see v4l-utils.spec for details
|
|
|
|
LIBV4L_LICENSE = GPLv2+ (utilities), LGPLv2.1+ (libraries)
|
|
|
|
LIBV4L_LICENSE_FILES = COPYING COPYING.libv4l lib/libv4l1/libv4l1-kernelcode-license.txt
|
2011-04-05 12:05:08 +02:00
|
|
|
|
2014-07-05 23:07:40 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
|
|
|
LIBV4L_DEPENDENCIES += argp-standalone
|
2014-11-09 11:21:21 +01:00
|
|
|
LIBV4L_LIBS += -largp
|
2011-03-07 18:21:18 +01:00
|
|
|
endif
|
|
|
|
|
2014-10-23 23:22:36 +02:00
|
|
|
LIBV4L_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
|
|
|
2014-07-05 23:07:40 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
|
|
LIBV4L_DEPENDENCIES += jpeg
|
2014-09-27 21:32:44 +02:00
|
|
|
LIBV4L_CONF_OPTS += --with-jpeg
|
2014-07-05 23:07:40 +02:00
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
LIBV4L_CONF_OPTS += --without-jpeg
|
2014-07-05 23:07:40 +02:00
|
|
|
endif
|
2011-03-07 18:21:18 +01:00
|
|
|
|
2014-10-14 15:05:03 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
|
|
LIBV4L_CONF_OPTS += --with-libudev
|
|
|
|
LIBV4L_DEPENDENCIES += udev
|
|
|
|
else
|
|
|
|
LIBV4L_CONF_OPTS += --without-libudev
|
|
|
|
endif
|
|
|
|
|
2014-07-05 23:07:40 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBV4L_UTILS),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
LIBV4L_CONF_OPTS += --enable-v4l-utils
|
2014-11-09 11:21:21 +01:00
|
|
|
# clock_gettime is used, which is provided by librt for glibc < 2.17
|
|
|
|
LIBV4L_LIBS += -lrt
|
2015-10-16 20:43:31 +02:00
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
|
|
LIBV4L_DEPENDENCIES += gettext
|
|
|
|
endif
|
2015-10-13 23:08:39 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE)$(BR2_PACKAGE_QT5BASE_GUI)$(BR2_PACKAGE_QT5BASE_WIDGETS),yyy)
|
|
|
|
LIBV4L_CONF_OPTS += --enable-qv4l2
|
|
|
|
LIBV4L_DEPENDENCIES += qt5base
|
|
|
|
# protect against host version detection of moc-qt5/rcc-qt5/uic-qt5
|
|
|
|
LIBV4L_CONF_ENV += \
|
|
|
|
ac_cv_prog_MOC=$(HOST_DIR)/usr/bin/moc \
|
|
|
|
ac_cv_prog_RCC=$(HOST_DIR)/usr/bin/rcc \
|
|
|
|
ac_cv_prog_UIC=$(HOST_DIR)/usr/bin/uic
|
|
|
|
else ifeq ($(BR2_PACKAGE_QT_GUI_MODULE),y)
|
|
|
|
LIBV4L_CONF_OPTS += --enable-qv4l2
|
|
|
|
LIBV4L_DEPENDENCIES += qt
|
|
|
|
else
|
|
|
|
LIBV4L_CONF_OPTS += --disable-qv4l2
|
|
|
|
endif
|
2014-07-05 23:07:40 +02:00
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
LIBV4L_CONF_OPTS += --disable-v4l-utils
|
2014-07-05 23:07:40 +02:00
|
|
|
endif
|
2011-03-07 18:21:18 +01:00
|
|
|
|
2014-11-09 11:21:21 +01:00
|
|
|
LIBV4L_CONF_ENV += LIBS="$(LIBV4L_LIBS)"
|
|
|
|
|
2014-07-05 23:07:40 +02:00
|
|
|
$(eval $(autotools-package))
|