2013-09-28 09:59:50 +00:00
|
|
|
#ifndef ZM_CMAKE_CONFIG_H
|
|
|
|
#define ZM_CMAKE_CONFIG_H
|
|
|
|
|
|
|
|
/* This file is used by cmake to create config.h for ZM */
|
|
|
|
|
|
|
|
/* General system checks */
|
2015-05-20 22:20:44 +00:00
|
|
|
#cmakedefine BSD 1
|
|
|
|
#cmakedefine SOLARIS 1
|
2013-09-28 09:59:50 +00:00
|
|
|
#cmakedefine HAVE_LINUX_VIDEODEV2_H 1
|
|
|
|
#cmakedefine HAVE_EXECINFO_H 1
|
2013-10-06 15:26:33 +00:00
|
|
|
#cmakedefine HAVE_UCONTEXT_H 1
|
2013-09-28 09:59:50 +00:00
|
|
|
#cmakedefine HAVE_SYS_SENDFILE_H 1
|
|
|
|
#cmakedefine HAVE_SYS_SYSCALL_H 1
|
2013-10-03 12:08:09 +00:00
|
|
|
#cmakedefine HAVE_SYSCALL 1
|
2013-09-28 09:59:50 +00:00
|
|
|
#cmakedefine HAVE_SENDFILE 1
|
|
|
|
#cmakedefine HAVE_DECL_BACKTRACE 1
|
2013-10-06 15:26:33 +00:00
|
|
|
#cmakedefine HAVE_DECL_BACKTRACE_SYMBOLS 1
|
2013-09-28 09:59:50 +00:00
|
|
|
#cmakedefine HAVE_POSIX_MEMALIGN 1
|
|
|
|
#cmakedefine HAVE_SIGINFO_T 1
|
|
|
|
#cmakedefine HAVE_UCONTEXT_T 1
|
|
|
|
|
|
|
|
/* Library checks and their header files */
|
|
|
|
#cmakedefine HAVE_LIBZLIB 1
|
|
|
|
#cmakedefine HAVE_ZLIB_H 1
|
2013-11-04 14:57:22 +00:00
|
|
|
#cmakedefine HAVE_LIBCURL 1
|
|
|
|
#cmakedefine HAVE_CURL_CURL_H 1
|
2013-09-28 09:59:50 +00:00
|
|
|
#cmakedefine HAVE_LIBJPEG 1
|
|
|
|
#cmakedefine HAVE_JPEGLIB_H 1
|
|
|
|
#cmakedefine HAVE_LIBOPENSSL 1
|
|
|
|
#cmakedefine HAVE_LIBPTHREAD 1
|
|
|
|
#cmakedefine HAVE_PTHREAD_H
|
|
|
|
#cmakedefine HAVE_LIBPCRE 1
|
|
|
|
#cmakedefine HAVE_PCRE_H 1
|
|
|
|
#cmakedefine HAVE_LIBGNUTLS 1
|
|
|
|
#cmakedefine HAVE_LIBMYSQLCLIENT 1
|
|
|
|
#cmakedefine HAVE_MYSQL_H 1
|
2019-06-24 21:22:59 +00:00
|
|
|
#cmakedefine HAVE_LIBAVUTIL_HWCONTEXT_H 1
|
2013-12-12 17:45:29 +00:00
|
|
|
#cmakedefine HAVE_LIBVLC 1
|
2013-12-21 04:47:12 +00:00
|
|
|
#cmakedefine HAVE_VLC_VLC_H 1
|
2020-03-26 07:08:00 +00:00
|
|
|
#cmakedefine HAVE_LIBVNC 1
|
|
|
|
#cmakedefine HAVE_RFB_RFB_H 1
|
2020-03-05 17:29:27 +00:00
|
|
|
#cmakedefine HAVE_LIBJWT 1
|
2020-12-09 20:04:05 +00:00
|
|
|
#cmakedefine HAVE_RTSP_SERVER 1
|
2024-10-21 21:39:27 +00:00
|
|
|
#cmakedefine MOSQUITTO_FOUND 1
|
|
|
|
#cmakedefine MOSQUITTOPP_FOUND 1
|
2013-09-28 09:59:50 +00:00
|
|
|
|
2013-10-07 12:06:26 +00:00
|
|
|
/* Few ZM options that are needed by the source code */
|
|
|
|
#cmakedefine ZM_MEM_MAPPED 1
|
2021-05-31 21:07:59 +00:00
|
|
|
#cmakedefine ZM_HAS_V4L2 1
|
2013-10-07 12:06:26 +00:00
|
|
|
|
2013-09-28 09:59:50 +00:00
|
|
|
/* Its safe to assume that signal return type is void. This is a fix for zm_signal.h */
|
|
|
|
#define RETSIGTYPE void
|
|
|
|
|
|
|
|
#endif
|