Making a port - debugging cmake check_include_file

abi abi at abinet.ru
Sat Apr 23 20:56:59 UTC 2016


Hello.

I'm porting Zoneminder, however I have bad luck compiling v4l support.
The program uses smale and has the following check:

check_include_file("libv4l1-videodev.h" HAVE_LIBV4L1_VIDEODEV_H)
if(NOT HAVE_LIBV4L1_VIDEODEV_H)
         check_include_file("linux/videodev.h" HAVE_LINUX_VIDEODEV_H)
endif(NOT HAVE_LIBV4L1_VIDEODEV_H)
check_include_file("linux/videodev2.h" HAVE_LINUX_VIDEODEV2_H)

this block failing me completely.

from cmake error log:
Determining if the include file libv4l1-videodev.h exists failed with 
the following output:
Change Dir: 
/usr/home/abishai/zoneminder/work/ZoneMinder-5a3978f/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTC_bd985/fast"
gmake[2]: Entering directory 
'/usr/home/abishai/zoneminder/work/ZoneMinder-5a3978f/CMakeFiles/CMakeTmp'
/usr/local/bin/gmake -f CMakeFiles/cmTC_bd985.dir/build.make 
CMakeFiles/cmTC_bd985.dir/build
gmake[3]: Entering directory 
'/usr/home/abishai/zoneminder/work/ZoneMinder-5a3978f/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bd985.dir/CheckIncludeFile.c.o
/usr/bin/cc    -O2 -pipe  -fstack-protector -fno-strict-aliasing -o 
CMakeFiles/cmTC_bd985.dir/CheckIncludeFile.c.o   -c 
/usr/home/abishai/zoneminder/work/ZoneMinder-5a3978f/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/usr/home/abishai/zoneminder/work/ZoneMinder-5a3978f/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: 
fatal error: 'libv4l1-videodev.h' file not found
#include <libv4l1-videodev.h>
          ^
1 error generated.
CMakeFiles/cmTC_bd985.dir/build.make:65: recipe for target 
'CMakeFiles/cmTC_bd985.dir/CheckIncludeFile.c.o' failed
gmake[3]: *** [CMakeFiles/cmTC_bd985.dir/CheckIncludeFile.c.o] Error 1
gmake[3]: Leaving directory 
'/usr/home/abishai/zoneminder/work/ZoneMinder-5a3978f/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_bd985/fast' failed
gmake[2]: *** [cmTC_bd985/fast] Error 2
gmake[2]: Leaving directory 
'/usr/home/abishai/zoneminder/work/ZoneMinder-5a3978f/CMakeFiles/CMakeTmp'

I have this header file:
abishai at freezm:~/zoneminder % ls -la /usr/local/include/ | grep 
libv4l1-videodev.h
-rw-r--r--   1 root  wheel   7135 Apr 23 23:13 libv4l1-videodev.h

Any ideas ? path problem?


More information about the freebsd-ports mailing list