aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ecore/m4/ecore_check_options.m4
blob: fb7031a18282b4104dd7180e31a386664d46a5a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
dnl use: ECORE_CHECK_POLL(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_POLL],
[
_ecore_want_poll=$1
_ecore_have_poll="no"

AC_ARG_ENABLE(poll,
   [AC_HELP_STRING([--disable-poll], [disable poll in the ecore_file module])],
   [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_poll="yes"
    else
       _ecore_want_poll="no"
    fi
   ])

AC_MSG_CHECKING(whether polling is to be used for filemonitoring)
AC_MSG_RESULT(${_ecore_want_poll})

if test "x${_ecore_want_poll}" = "xyes" ; then
   AC_DEFINE([HAVE_POLL], [1], [ File monitoring with polling ])
   _ecore_have_poll="yes"
fi

if test "x${_ecore_have_poll}" = "xyes" ; then
   m4_default([$2], [:])
else
   m4_default([$3], [:])
fi
])

dnl use: ECORE_CHECK_INOTIFY(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_INOTIFY],
[
_ecore_want_inotify=$1
_ecore_have_inotify="no"

dnl We need to check if the right inotify version is accessible
_ecore_want_inotify="yes"
AC_ARG_ENABLE(inotify,
   [AC_HELP_STRING([--disable-inotify], [disable inotify in the ecore_file module])],
   [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_inotify="yes"
    else
       _ecore_want_inotify="no"
    fi
   ])

AC_MSG_CHECKING(whether inotify is to be used for filemonitoring)
AC_MSG_RESULT($_ecore_want_inotify)

dnl It is hard to find a good test on how to check the correct
dnl inotify version. They changed the headers a lot.
dnl in kernel 2.6.13 __NR_inotify_init was added to the defined syscalls
dnl in asm/unistd.h and IN_MOVE_SELF was added to linux/inotify.h
dnl so with this check you need a very new kernel and kernel-headers!

if test "x${_ecore_want_inotify}" = "xyes" ; then
   AC_CHECK_LIB([c], [inotify_init],
      [
       AC_DEFINE(HAVE_INOTIFY, 1, [ File monitoring with Inotify ])
       AC_DEFINE(HAVE_SYS_INOTIFY, 1, [ File monitoring with Inotify - sys/inotify.h ])
       _ecore_have_inotify="yes"
      ],
      [
       AC_TRY_COMPILE(
          [
           #include <asm/unistd.h>
           #include <linux/inotify.h>
          ],
          [int a = __NR_inotify_init; int b = IN_MOVE_SELF;],
          [
           AC_DEFINE([HAVE_INOTIFY], [1], [ File monitoring with Inotify ])
           _ecore_have_inotify="yes"
          ],
          [_ecore_have_inotify="no"])
      ])
fi

if test "x$_ecore_have_inotify" = "xyes" ; then
   m4_default([$2], [:])
else
   m4_default([$3], [:])
fi
])
 
dnl use: ECORE_CHECK_NOTIFY_WIN32(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_NOTIFY_WIN32],
[
_ecore_want_notify_win32=$1
_ecore_have_notify_win32="no"

AC_ARG_ENABLE(notify-win32,
   [AC_HELP_STRING([--disable-notify-win32], [disable Windows notification in the ecore_file module])],
   [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_notify_win32="yes"
    else
       _ecore_want_notify_win32="no"
    fi
   ])

AC_MSG_CHECKING(whether Windows notification is to be used for filemonitoring)
AC_MSG_RESULT(${_ecore_want_notify_win32})

if test "x${_ecore_want_notify_win32}" = "xyes" ; then
   AC_DEFINE([HAVE_NOTIFY_WIN32], [1], [ File monitoring with Windows notification ])
   _ecore_have_notify_win32="yes"
fi

if test "x${_ecore_have_notify_win32}" = "xyes" ; then
   m4_default([$2], [:])
else
   m4_default([$3], [:])
fi
])

dnl use: ECORE_CHECK_CURL(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_CURL],
[
_ecore_want_curl=$1
_ecore_have_curl="no"

AC_ARG_ENABLE([curl],
   [AC_HELP_STRING([--disable-curl], [disable curl support])],
   [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_curl="yes"
    else
       _ecore_want_curl="no"
    fi
   ])

if test "x${_ecore_want_curl}" = "xyes" ; then
   PKG_CHECK_MODULES(CURL, libcurl,
      [
       AC_DEFINE(HAVE_CURL, 1, [ Downloading with CURL ])
       _ecore_have_curl="yes"
      ],
      [_ecore_have_curl="no"])
fi

if test "x$_ecore_have_curl" = "xyes" ; then
   m4_default([$2], [:])
else
   m4_default([$3], [:])
fi
])

dnl use: ECORE_CHECK_GNUTLS(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_GNUTLS],
[
_ecore_want_gnutls=$1
_ecore_have_gnutls="no"

AC_ARG_ENABLE([gnutls],
   [AC_HELP_STRING([--disable-gnutls], [disable gnutls support])],
   [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_gnutls="yes"
    else
       _ecore_want_gnutls="no"
    fi
   ])

if test "x${_ecore_want_gnutls}" = "xyes" -o "x${_ecore_want_gnutls}" = "xauto" ; then
   PKG_CHECK_MODULES([TLS], [gnutls >= 2.10.2],
      [
       AC_DEFINE([USE_GNUTLS], [1], [Use GnuTLS])
       _ecore_have_gnutls="yes"
      ],
      [_ecore_have_gnutls="no"])
   # for ecore_con_ssl.c
   PKG_CHECK_MODULES([TLS2], [gnutls >= 2.10.2],
      [AC_DEFINE(USE_GNUTLS2, 1, [Use GnuTLS 2 or higher])],
      [dummy="no"])
   if test "x$_ecore_have_gnutls" = "xyes";then
     AC_PATH_GENERIC([libgcrypt], [], [_ecore_have_gnutls="yes"], [_ecore_have_gnutls="no"])
        if test "x${_ecore_have_gnutls}" = "xyes" ; then
           TLS_CFLAGS+=" ${LIBGCRYPT_CFLAGS}"
           TLS_LIBS+=" ${LIBGCRYPT_LIBS}"
        fi
   fi

fi

if test "x$_ecore_have_gnutls" = "xyes" ; then
  ifelse([$2], , :, [$2])
else
  ifelse([$3], , :, [$3])
fi
])

dnl use: ECORE_CHECK_OPENSSL(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_OPENSSL],
[
_ecore_want_openssl=$1
_ecore_have_openssl="no"

AC_ARG_ENABLE(openssl,
  [AC_HELP_STRING([--disable-openssl], [disable openssl support])],
  [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_openssl="yes"
    else
       _ecore_want_openssl="no"
    fi
  ])

if test "x${_ecore_have_gnutls}" = "xyes";then
  _ecore_want_openssl=no
fi

if test "x${_ecore_want_openssl}" = "xyes" -o "x${_ecore_want_openssl}" = "xauto"; then
   PKG_CHECK_MODULES([SSL],
      [openssl],
      [
       AC_DEFINE(USE_OPENSSL, 1, [Use OpenSSL])
       _ecore_have_openssl="yes"
      ],
      [_ecore_have_openssl="no"])
fi

if test "x$_ecore_have_openssl" = "xyes" ; then
   m4_default([$2], [:])
else
   m4_default([$3], [:])
fi
])

dnl use: ECORE_CHECK_TSLIB(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_TSLIB],
[
_tslib_requirement=""
_ecore_want_tslib=$1
_ecore_have_tslib="no"
TSLIB_LIBS=""
TSLIB_CFLAGS=""

AC_ARG_ENABLE([tslib],
   [AC_HELP_STRING([--disable-tslib],
       [disable the tslib support in ecore (currently ecore-fb).
        @<:@default=detect@:>@])],
   [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_tslib="yes"
    else
       _ecore_want_tslib="no"
    fi
   ])

if test "x${_ecore_want_tslib}" = "xyes" -o "x${_ecore_want_tslib}" = "xauto" ; then
   PKG_CHECK_MODULES([TSLIB], [tslib-1.0],
     [
      AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
      _ecore_have_tslib="yes"
      _tslib_requirement="tslib-1.0"
     ],[
      PKG_CHECK_MODULES([TSLIB], [tslib],
        [
         AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
         _ecore_have_tslib="yes"
         _tslib_requirement="tslib"
        ],[
         AC_CHECK_HEADER([tslib.h],
           [
            AC_CHECK_LIB([ts], [ts_open], 
              [
               TSLIB_LIBS="-lts" 
               TSLIB_CFLAGS=""
               AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
               _ecore_have_tslib="yes"
              ],[
               AC_CHECK_LIB([tslib], [ts_open],
                 [
                  TSLIB_LIBS="-ltslib"
                  TSLIB_CFLAGS=""
                  AC_DEFINE(HAVE_TSLIB, 1, [Build Ecore_FB Touchscreen Code])
                  _ecore_have_tslib="yes"
                 ],[
                  _ecore_have_tslib="no"
                 ])
              ])
           ])
        ])
     ])
fi

AC_SUBST(TSLIB_LIBS)
AC_SUBST(TSLIB_CFLAGS)

if test "x$_ecore_have_tslib" = "xyes" ; then
   m4_default([$2], [:])
else
   m4_default([$3], [:])
fi
])

dnl use: ECORE_CHECK_CARES(default-enabled[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([ECORE_CHECK_CARES],
[
_ecore_want_cares=$1
_ecore_have_cares="no"

AC_ARG_ENABLE(cares,
  [AC_HELP_STRING([--disable-cares], [disable cares support])],
  [
    if test "x${enableval}" = "xyes" ; then
       _ecore_want_cares="yes"
    else
       _ecore_want_cares="no"
    fi
  ])

if test "x${_ecore_want_cares}" = "xyes" -o "x${_ecore_want_cares}" = "xauto" ; then
   PKG_CHECK_MODULES([CARES], [libcares >= 1.6.1],
     [_ecore_have_cares="yes"],
     [_ecore_have_cares="no"])
fi

if test "x${_ecore_have_cares}" = "xyes" ; then
   AC_DEFINE([HAVE_CARES], [1], [Build Ecore_Con_Info with c-ares support])
fi

if test "x$_ecore_have_cares" = "xyes" ; then
   m4_default([$2], [:])
else
   m4_default([$3], [:])
fi
])