1 dnl use: ECORE_CHECK_POLL(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
2 AC_DEFUN([ECORE_CHECK_POLL],
8 [AC_HELP_STRING([--disable-poll], [disable poll in the ecore_file module])],
10 if test "x${enableval}" = "xyes" ; then
11 _ecore_want_poll="yes"
17 AC_MSG_CHECKING(whether polling is to be used for filemonitoring)
18 AC_MSG_RESULT(${_ecore_want_poll})
20 if test "x${_ecore_want_poll}" = "xyes" ; then
21 AC_DEFINE([HAVE_POLL], [1], [ File monitoring with polling ])
22 _ecore_have_poll="yes"
25 if test "x${_ecore_have_poll}" = "xyes" ; then
32 dnl use: ECORE_CHECK_INOTIFY(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
33 AC_DEFUN([ECORE_CHECK_INOTIFY],
35 _ecore_want_inotify=$1
36 _ecore_have_inotify="no"
38 dnl We need to check if the right inotify version is accessible
39 _ecore_want_inotify="yes"
40 AC_ARG_ENABLE(inotify,
41 [AC_HELP_STRING([--disable-inotify], [disable inotify in the ecore_file module])],
43 if test "x${enableval}" = "xyes" ; then
44 _ecore_want_inotify="yes"
46 _ecore_want_inotify="no"
50 AC_MSG_CHECKING(whether inotify is to be used for filemonitoring)
51 AC_MSG_RESULT($_ecore_want_inotify)
53 dnl It is hard to find a good test on how to check the correct
54 dnl inotify version. They changed the headers a lot.
55 dnl in kernel 2.6.13 __NR_inotify_init was added to the defined syscalls
56 dnl in asm/unistd.h and IN_MOVE_SELF was added to linux/inotify.h
57 dnl so with this check you need a very new kernel and kernel-headers!
59 if test "x${_ecore_want_inotify}" = "xyes" ; then
60 AC_CHECK_LIB([c], [inotify_init],
62 AC_DEFINE(HAVE_INOTIFY, 1, [ File monitoring with Inotify ])
63 AC_DEFINE(HAVE_SYS_INOTIFY, 1, [ File monitoring with Inotify - sys/inotify.h ])
64 _ecore_have_inotify="yes"
69 #include <asm/unistd.h>
70 #include <linux/inotify.h>
72 [int a = __NR_inotify_init; int b = IN_MOVE_SELF;],
74 AC_DEFINE([HAVE_INOTIFY], [1], [ File monitoring with Inotify ])
75 _ecore_have_inotify="yes"
77 [_ecore_have_inotify="no"])
81 if test "x$_ecore_have_inotify" = "xyes" ; then
88 dnl use: ECORE_CHECK_NOTIFY_WIN32(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
89 AC_DEFUN([ECORE_CHECK_NOTIFY_WIN32],
91 _ecore_want_notify_win32=$1
92 _ecore_have_notify_win32="no"
94 AC_ARG_ENABLE(notify-win32,
95 [AC_HELP_STRING([--disable-notify-win32], [disable Windows notification in the ecore_file module])],
97 if test "x${enableval}" = "xyes" ; then
98 _ecore_want_notify_win32="yes"
100 _ecore_want_notify_win32="no"
104 AC_MSG_CHECKING(whether Windows notification is to be used for filemonitoring)
105 AC_MSG_RESULT(${_ecore_want_notify_win32})
107 if test "x${_ecore_want_notify_win32}" = "xyes" ; then
108 AC_DEFINE([HAVE_NOTIFY_WIN32], [1], [ File monitoring with Windows notification ])
109 _ecore_have_notify_win32="yes"
112 if test "x${_ecore_have_notify_win32}" = "xyes" ; then
113 m4_default([$2], [:])
115 m4_default([$3], [:])
119 dnl use: ECORE_CHECK_CURL(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
120 AC_DEFUN([ECORE_CHECK_CURL],
123 _ecore_have_curl="no"
125 AC_ARG_ENABLE([curl],
126 [AC_HELP_STRING([--disable-curl], [disable curl support])],
128 if test "x${enableval}" = "xyes" ; then
129 _ecore_want_curl="yes"
131 _ecore_want_curl="no"
135 if test "x${_ecore_want_curl}" = "xyes" ; then
136 PKG_CHECK_MODULES(CURL, libcurl,
138 AC_DEFINE(HAVE_CURL, 1, [ Downloading with CURL ])
139 _ecore_have_curl="yes"
141 [_ecore_have_curl="no"])
144 if test "x$_ecore_have_curl" = "xyes" ; then
145 m4_default([$2], [:])
147 m4_default([$3], [:])
151 dnl use: ECORE_CHECK_GNUTLS(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
152 AC_DEFUN([ECORE_CHECK_GNUTLS],
154 _ecore_want_gnutls=$1
155 _ecore_have_gnutls="no"
157 AC_ARG_ENABLE([gnutls],
158 [AC_HELP_STRING([--disable-gnutls], [disable gnutls support])],
160 if test "x${enableval}" = "xyes" ; then
161 _ecore_want_gnutls="yes"
163 _ecore_want_gnutls="no"
167 if test "x${_ecore_want_gnutls}" = "xyes" -o "x${_ecore_want_gnutls}" = "xauto" ; then
168 PKG_CHECK_MODULES([TLS], [gnutls],
170 AC_DEFINE([USE_GNUTLS], [1], [Use GnuTLS])
171 _ecore_have_gnutls="yes"
173 [_ecore_have_gnutls="no"])
174 # for ecore_con_ssl.c
175 PKG_CHECK_MODULES([TLS2], [gnutls >= 2.0.0],
176 [AC_DEFINE(USE_GNUTLS2, 1, [Use GnuTLS 2 or higher])],
180 if test "x$_ecore_have_gnutls" = "xyes" ; then
181 ifelse([$2], , :, [$2])
183 ifelse([$3], , :, [$3])
187 dnl use: ECORE_CHECK_OPENSSL(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
188 AC_DEFUN([ECORE_CHECK_OPENSSL],
190 _ecore_want_openssl=$1
191 _ecore_have_openssl="no"
193 AC_ARG_ENABLE(openssl,
194 [AC_HELP_STRING([--disable-openssl], [disable openssl support])],
196 if test "x${enableval}" = "xyes" ; then
197 _ecore_want_openssl="yes"
199 _ecore_want_openssl="no"
203 if test "x${_ecore_want_openssl}" = "xyes" -o "x${_ecore_want_openssl}" = "xauto"; then
204 PKG_CHECK_MODULES([SSL],
207 AC_DEFINE(USE_OPENSSL, 1, [Use OpenSSL])
208 _ecore_have_openssl="yes"
210 [_ecore_have_openssl="no"])
213 if test "x$_ecore_have_openssl" = "xyes" ; then
214 m4_default([$2], [:])
216 m4_default([$3], [:])
220 dnl use: ECORE_CHECK_TSLIB(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
221 AC_DEFUN([ECORE_CHECK_TSLIB],
223 _tslib_requirement=""
225 _ecore_have_tslib="no"
229 if test "x${_ecore_want_tslib}" = "xyes" -o "x${_ecore_want_tslib}" = "xauto" ; then
230 PKG_CHECK_MODULES([TSLIB], [tslib-1.0],
232 AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
233 _ecore_have_tslib="yes"
234 _tslib_requirement="tslib-1.0"
236 PKG_CHECK_MODULES([TSLIB], [tslib],
238 AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
239 _ecore_have_tslib="yes"
240 _tslib_requirement="tslib"
242 AC_CHECK_HEADER([tslib.h],
244 AC_CHECK_LIB([ts], [ts_open],
248 AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
249 _ecore_have_tslib="yes"
251 AC_CHECK_LIB([tslib], [ts_open],
255 AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
256 _ecore_have_tslib="yes"
258 _ecore_have_tslib="no"
267 AC_SUBST(TSLIB_CFLAGS)
269 if test "x$_ecore_have_tslib" = "xyes" ; then
270 m4_default([$2], [:])
272 m4_default([$3], [:])
276 dnl use: ECORE_CHECK_CARES(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
277 AC_DEFUN([ECORE_CHECK_CARES],
279 _cares_requirement=""
281 _ecore_have_cares="no"
286 [AC_HELP_STRING([--disable-cares], [disable cares support])],
288 if test "x${enableval}" = "xyes" ; then
289 _ecore_want_cares="yes"
291 _ecore_want_cares="no"
295 if test "x${_ecore_want_cares}" = "xyes" -o "x${_ecore_want_cares}" = "xauto" ; then
296 PKG_CHECK_MODULES([CARES], [libcares >= 1.6.1],
298 AC_DEFINE(HAVE_CARES, 1, [Build Ecore_Con_Info with c-ares support])
299 _ecore_have_cares="yes"
300 _cares_requirement="libcares"
302 _ecore_have_cares="no"
306 AM_CONDITIONAL(HAVE_CARES, test "x$_ecore_have_cares" = "xyes")
309 AC_SUBST(CARES_CFLAGS)
311 if test "x$_ecore_have_cares" = "xyes" ; then
312 m4_default([$2], [:])
314 m4_default([$3], [:])