Evas (wayland): We should also check for framespace changes here and
[profile/ivi/evas.git] / configure.ac
1 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
2 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
3 m4_define([v_maj], [1])
4 m4_define([v_min], [7])
5 m4_define([v_mic], [0])
6 m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf("%s\n", $1);}' | tr -d ' :MSP\n']))
7 m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d '\n']))])
8 ##--   When released, remove the dnl on the below line
9 m4_undefine([v_rev])
10 ##--   When doing snapshots - change soname. remove dnl on below line
11 dnl m4_define([relname], [ver-pre-svn-07])
12 dnl m4_define([v_rel], [-release relname])
13 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
14 m4_ifdef([v_rev], [m4_define([v_ver], [v_maj.v_min.v_mic.v_rev])], [m4_define([v_ver], [v_maj.v_min.v_mic])])
15 m4_define([lt_cur], m4_eval(v_maj + v_min))
16 m4_define([lt_rev], v_mic)
17 m4_define([lt_age], v_min)
18 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
19 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
20
21 # rw_PROG_OBJC_WORKS
22 # Check whether the Objective C compiler works.
23 AC_DEFUN([rw_PROG_OBJC_WORKS],
24 [m4_ifdef([AC_PROG_OBJC], [AC_REQUIRE([AC_PROG_OBJC])dnl
25 AC_CACHE_CHECK([whether the Objective C compiler works],
26                [rw_cv_prog_objc_works],
27                [AC_LANG_PUSH([Objective C])
28                 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
29                                [rw_cv_prog_objc_works=yes],
30                                [rw_cv_prog_objc_works=no])
31                 AC_LANG_POP([Objective C])])], [rw_cv_prog_objc_works=no])
32 ])
33
34 AC_INIT([evas], [v_ver-alpha], [enlightenment-devel@lists.sourceforge.net])
35 AC_PREREQ([2.52])
36 AC_CONFIG_SRCDIR([configure.ac])
37 AC_CONFIG_MACRO_DIR([m4])
38
39 AC_CONFIG_HEADERS([config.h])
40 AH_TOP([
41 #ifndef EFL_CONFIG_H__
42 #define EFL_CONFIG_H__
43 ])
44 AH_BOTTOM([
45 #endif /* EFL_CONFIG_H__ */
46 ])
47
48 AM_INIT_AUTOMAKE([1.6 dist-bzip2])
49 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
50
51 AC_GNU_SOURCE
52
53 AC_LIBTOOL_WIN32_DLL
54 define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
55 AC_PROG_LIBTOOL
56
57 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
58 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
59 m4_ifdef([v_rev], , [m4_define([v_rev], [0])])
60 m4_ifdef([v_rel], , [m4_define([v_rel], [])])
61 AC_DEFINE_UNQUOTED(VMAJ, [v_maj], [Major version])
62 AC_DEFINE_UNQUOTED(VMIN, [v_min], [Minor version])
63 AC_DEFINE_UNQUOTED(VMIC, [v_mic], [Micro version])
64 AC_DEFINE_UNQUOTED(VREV, [v_rev], [Revison])
65 version_info="lt_cur:lt_rev:lt_age"
66 release_info="v_rel"
67 AC_SUBST(version_info)
68 AC_SUBST(release_info)
69 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
70 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
71 VMAJ=v_maj
72 AC_SUBST(VMAJ)
73
74 ### Needed information
75
76 AC_CANONICAL_BUILD
77 AC_CANONICAL_HOST
78
79 case "$host_os" in
80    mingw32ce*)
81       MODULE_ARCH="$host_os-$host_cpu"
82       ;;
83    *)
84       MODULE_ARCH="$host_os-$host_cpu-v_maj.v_min.v_mic"
85       ;;
86 esac
87 AC_SUBST(MODULE_ARCH)
88 AC_DEFINE_UNQUOTED(MODULE_ARCH, "$MODULE_ARCH", "Module architecture")
89
90 want_fontconfig="auto"
91 want_fribidi="auto"
92 want_harfbuzz="auto"
93 want_pixman="no"
94 want_evas_cserve="yes"
95 want_evas_cserve2="yes"
96
97 want_evas_engine_buffer="yes"
98 want_evas_engine_software_xlib="no"
99 want_evas_engine_software_xcb="no"
100 want_evas_engine_software_gdi="no"
101 want_evas_engine_software_ddraw="no"
102 want_evas_engine_software_8_x11="no"
103 want_evas_engine_software_16_x11="no"
104 want_evas_engine_software_16_wince="no"
105 want_evas_engine_software_16_sdl="no"
106 want_evas_engine_gl_xlib="no"
107 want_evas_engine_gl_xcb="no"
108 want_evas_engine_gl_sdl="no"
109 want_evas_engine_gl_cocoa="no"
110 want_evas_engine_direct3d="no"
111 want_evas_engine_fb="no"
112 want_evas_engine_directfb="no"
113 want_evas_engine_psl1ght="no"
114 want_evas_engine_wayland_shm="no"
115 want_evas_engine_wayland_egl="no"
116
117 want_evas_image_loader_edb="yes"
118 want_evas_image_loader_eet="yes"
119 want_evas_image_loader_gif="yes"
120 want_evas_image_loader_jpeg="yes"
121 want_evas_image_loader_pmaps="yes"
122 want_evas_image_loader_png="yes"
123 want_evas_image_loader_svg="yes"
124 want_evas_image_loader_tiff="yes"
125 want_evas_image_loader_xpm="yes"
126 want_evas_image_loader_bmp="yes"
127 want_evas_image_loader_tga="yes"
128 want_evas_image_loader_wbmp="yes"
129 want_evas_image_loader_ico="yes"
130 want_evas_image_loader_psd="yes"
131 want_evas_image_loader_generic="yes"
132
133 want_evas_font_loader_eet="yes"
134
135 case "$host_os" in
136    mingw32ce*)
137       want_fontconfig="no"
138       want_evas_engine_software_16_wince="yes"
139       want_evas_image_loader_edb="no"
140       want_evas_image_loader_gif="no"
141       want_evas_image_loader_svg="no"
142       want_evas_image_loader_tiff="no"
143       ;;
144    mingw*)
145       want_evas_engine_software_gdi="yes"
146       want_evas_engine_software_ddraw="yes"
147       want_evas_engine_direct3d="yes"
148       want_evas_image_loader_edb="no"
149       want_evas_image_loader_svg="no"
150       ;;
151    darwin*)
152       want_evas_engine_software_xlib="auto"
153       want_evas_engine_gl_cocoa="auto"
154       ;;
155    *)
156       want_evas_engine_software_xlib="auto"
157       want_evas_engine_gl_xlib="auto"
158       want_evas_engine_software_xcb="no"
159       want_evas_engine_gl_xcb="no"
160       want_evas_engine_fb="auto"
161       want_evas_engine_wayland_shm="auto"
162       want_evas_engine_wayland_egl="auto"
163 ### no - not ready/usable/complete
164 #      want_evas_engine_software_8_x11="auto"
165 #      want_evas_engine_software_16_x11="auto"
166       ;;
167 esac
168
169 case "$host_vendor" in
170   ps3*)
171       want_evas_engine_psl1ght="static"
172       ;;
173 esac
174
175 requirement_evas=""
176
177
178 ### Additional options to configure
179
180 # when used, that option makes configure script fails when
181 # a requirement is selected, but not met.
182 use_strict="no"
183 AC_ARG_ENABLE([strict],
184    AC_HELP_STRING([--enable-strict], [enable strict checking mode. @<:@default==disabled@:>@]),
185    [use_strict="yes"],
186    [use_strict="no"])
187
188 # Simple X11 build/link
189 AC_ARG_ENABLE([simple-x11],
190    AC_HELP_STRING([--enable-simple-x11], [enable simple x11 linking]),
191    [
192     if test "x${enableval}" = "xyes" ; then
193        want_evas_simple_x11="yes"
194     else
195        want_evas_simple_x11="no"
196     fi
197    ])
198
199
200 ### Checks for programs
201
202 m4_ifdef([AC_PROG_OBJC],
203    [
204     AC_PROG_OBJC
205     _AM_DEPENDENCIES(OBJC)
206    ],
207    [
208     dnl#AC_CHECK_TOOL([OBJC], [gcc])
209     dnl#AC_SUBST([OBJC])
210     dnl#AC_SUBST([OBJCFLAGS])
211    ])
212
213 rw_PROG_OBJC_WORKS
214
215 AC_PROG_CXX
216 AC_PROG_CC
217
218 # pkg-config
219 PKG_PROG_PKG_CONFIG
220
221 # Check whether pkg-config supports Requires.private
222 if $PKG_CONFIG --atleast-pkgconfig-version 0.22; then
223    pkgconfig_requires_private="Requires.private"
224 else
225    pkgconfig_requires_private="Requires"
226 fi
227 AC_SUBST(pkgconfig_requires_private)
228
229 # doxygen program for documentation building
230 EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"])
231
232
233 ### Checks for libraries
234
235 # Evil library for compilation on Windows CE
236
237 case "$host_os" in
238    mingw*)
239       PKG_CHECK_MODULES([EVIL], [evil >= 1.0.0])
240       AC_DEFINE(HAVE_EVIL, 1, [Set to 1 if evil package is installed])
241       requirement_evas="evil ${requirement_evas}"
242    ;;
243 esac
244
245 ### Checks for portability layer
246
247 PKG_CHECK_MODULES([EXOTIC],
248    [exotic],
249    [enable_exotic="yes"],
250    [enable_exotic="no"])
251
252 if test "x${enable_exotic}" = "xyes"; then
253     requirement_evas="exotic ${requirement_evas}"
254
255     AC_DEFINE([HAVE_EXOTIC], [1], [Define to 1 if you have Exotic.])
256 fi
257 AM_CONDITIONAL([EVAS_HAVE_EXOTIC], [test "x${enable_exotic}" = "xyes"])
258
259 ## strong dependencies
260
261 # Eina
262 PKG_CHECK_MODULES([EINA], [eina >= 1.6.0])
263 CPPFLAGS_SAVE="$CPPFLAGS"
264 CPPFLAGS="$CPPFLAGS $EINA_CFLAGS"
265 AC_CHECK_SIZEOF(Eina_Unicode,, [#include <Eina.h>])
266 CPPFLAGS="$CPPFLAGS_SAVE"
267
268 # Freetype
269 PKG_CHECK_MODULES([FREETYPE], [freetype2 >= 9.3.0])
270
271 requirement_evas="freetype2 eina >= 1.6.0 ${requirement_evas}"
272
273 ## optional dependencies
274
275 # FontConfig
276 have_fontconfig="no"
277 AC_ARG_ENABLE([fontconfig],
278    AC_HELP_STRING([--disable-fontconfig],
279       [disable fontconfig for finding fonts. @<:@default=enabled@:>@]),
280    [
281     if test "x${enableval}" = "xyes" ; then
282        want_fontconfig="yes"
283     else
284        want_fontconfig="no"
285     fi
286    ])
287
288
289 if test "x${want_fontconfig}" = "xyes" -o "x${want_fontconfig}" = "xauto" ; then
290    PKG_CHECK_MODULES([FONTCONFIG],
291       [fontconfig >= 2.5.0],
292       [
293        have_fontconfig="yes"
294        AC_DEFINE(HAVE_FONTCONFIG, 1, [have fontconfig searching capabilities])
295        requirement_evas="fontconfig ${requirement_evas}"
296       ],
297       [
298        if test "x${want_fontconfig}" = "xyes" -a "x${use_strict}" = "xyes" ; then
299           AC_MSG_ERROR([Fontconfig not found (strict dependencies checking)])
300        fi
301       ])
302 fi
303
304 # linebreak
305 have_linebreak="no"
306 want_linebreak="yes"
307 AC_ARG_ENABLE([liblinebreak],
308    AC_HELP_STRING([--disable-liblinebreak],
309       [disable linking against liblinebreak. @<:@default=enabled@:>@]),
310    [
311     if test "x${enableval}" = "xyes" ; then
312        want_linebreak="yes"
313     else
314        want_linebreak="no"
315     fi
316    ])
317
318
319 AM_CONDITIONAL(EVAS_USE_LINEBREAK, test "x${want_linebreak}" = "xyes")
320 if test "x${want_linebreak}" = "xyes" ; then
321    have_linebreak="yes"
322    LINEBREAK_CFLAGS='-I$(top_srcdir)/src/static_deps/liblinebreak'
323    LINEBREAK_LIBS='$(top_builddir)/src/static_deps/liblinebreak/liblinebreak.la'
324    AC_SUBST(LINEBREAK_CFLAGS)
325    AC_SUBST(LINEBREAK_LIBS)
326    AC_DEFINE(HAVE_LINEBREAK, 1, [have liblinebreak support])
327 else
328    have_linebreak="no"
329 fi
330
331 # fribidi support
332 have_fribidi="no"
333 AC_ARG_ENABLE([fribidi],
334    AC_HELP_STRING([--disable-fribidi],
335       [disable bidirectional text support. @<:@default=enabled@:>@]),
336    [
337     if test "x${enableval}" = "xyes" ; then
338        want_fribidi="yes"
339     else
340        want_fribidi="no"
341     fi
342    ])
343
344 if test "x${want_fribidi}" = "xyes" -o "x${want_fribidi}" = "xauto" ; then
345    PKG_CHECK_MODULES([FRIBIDI],
346       [fribidi >= 0.19.2],
347       [
348        have_fribidi="yes"
349        AC_DEFINE(HAVE_FRIBIDI, 1, [have fribidi support])
350        requirement_evas="fribidi ${requirement_evas}"
351        CPPFLAGS_SAVE="$CPPFLAGS"
352        CPPFLAGS="$CPPFLAGS $FRIBIDI_CFLAGS"
353        AC_CHECK_SIZEOF(FriBidiChar,, [#include <fribidi/fribidi.h>])
354        CPPFLAGS="$CPPFLAGS_SAVE"
355       ],
356       [
357        if test "x$want_fribidi" = "xyes" -a "x$use_strict" = "xyes" ; then
358           AC_MSG_ERROR([Fribidi not found (strict dependencies checking)])
359        fi
360       ])
361 fi
362
363 if test "x${have_fribidi}" = "xno"; then
364   HAS_BIDI=0
365 fi
366
367 # harfbuzz support
368 have_harfbuzz="no"
369 have_harfbuzz_ft="no"
370 AC_ARG_ENABLE([harfbuzz],
371    AC_HELP_STRING([--disable-harfbuzz],
372       [disable complex text shaping and layouting support. @<:@default=enabled@:>@]),
373    [
374     if test "x${enableval}" = "xyes" ; then
375        want_harfbuzz="yes"
376     else
377        want_harfbuzz="no"
378     fi
379    ])
380
381 if test "x${want_harfbuzz}" = "xyes" -o "x${want_harfbuzz}" = "xauto" ; then
382    PKG_CHECK_MODULES([HARFBUZZ],
383       [harfbuzz >= 0.9.0],
384       [
385        have_harfbuzz="yes"
386        requirement_evas="harfbuzz ${requirement_evas}"
387       ],
388       [
389        if test "x$want_harfbuzz" = "xyes" -a "x$use_strict" = "xyes" ; then
390           AC_MSG_ERROR([Harfbuzz not found (strict dependencies checking)])
391        fi
392       ])
393    if test "x$have_harfbuzz" = "xyes" ; then
394
395       CPPFLAGS_SAVE="$CPPFLAGS"
396       CPPFLAGS="$CPPFLAGS $HARFBUZZ_CFLAGS $FREETYPE_CFLAGS"
397 # must have for usage with harfbuzz although harfbuzz may not have it.
398
399       AC_CHECK_HEADER(hb-ft.h,
400           [
401            have_harfbuzz_ft="yes"
402            #Depend on harfbuzz ft for harfbuzz support
403            AC_DEFINE(HAVE_HARFBUZZ, 1, [have harfbuzz support])
404           ],
405           [
406            if test "x$want_harfbuzz" = "xyes" -a "x$use_strict" = "xyes" ; then
407               AC_MSG_ERROR([Harfbuzz-ft not found (strict dependencies checking)])
408            fi
409            have_harfbuzz="no"
410           ])
411       CPPFLAGS="$CPPFLAGS_SAVE"
412    fi
413 fi
414
415 if test "x${have_harfbuzz}" = "xno"; then
416   HAS_HARFBUZZ=0
417 fi
418
419 # Pixman
420 have_pixman="no"
421 AC_ARG_ENABLE([pixman],
422    AC_HELP_STRING([--enable-pixman],
423       [enable pixman for software rendering. @<:@default=enabled@:>@]),
424    [
425     if test "x${enableval}" = "xyes" ; then
426        want_pixman="yes"
427     else
428        want_pixman="no"
429     fi
430    ])
431
432
433 if test "x${want_pixman}" = "xyes" -o "x${want_pixman}" = "xauto" ; then
434    PKG_CHECK_MODULES([PIXMAN],
435       [pixman-1],
436       [
437        have_pixman="yes"
438        AC_DEFINE(HAVE_PIXMAN, 1, [have pixman for rendering])
439        requirement_evas="pixman-1 ${requirement_evas}"
440       ],
441       [
442        if test "x${want_pixman}" = "xyes" -a "x${use_strict}" = "xyes" ; then
443           AC_MSG_ERROR([Pixman not found (strict dependencies checking)])
444        fi
445       ])
446 fi
447
448 have_pixman_font="no"
449 AC_ARG_ENABLE(pixman-font,
450   AC_HELP_STRING([--enable-pixman-font], [Allow pixman to render fonts]),
451   [ 
452     have_pixman_font="yes"
453     AC_DEFINE(PIXMAN_FONT, 1, [Allow pixman to render fonts])
454   ]
455 )
456
457 have_pixman_rect="no"
458 AC_ARG_ENABLE(pixman-rect,
459   AC_HELP_STRING([--enable-pixman-rect], [Allow pixman to render rects]),
460   [ 
461     have_pixman_rect="yes"
462     AC_DEFINE(PIXMAN_RECT, 1, [Allow pixman to render rects])
463   ]
464 )
465
466 have_pixman_line="no"
467 AC_ARG_ENABLE(pixman-line,
468   AC_HELP_STRING([--enable-pixman-line], [Allow pixman to render lines]),
469   [ 
470     have_pixman_line="yes"
471     AC_DEFINE(PIXMAN_LINE, 1, [Allow pixman to render lines])
472   ]
473 )
474
475 have_pixman_poly="no"
476 AC_ARG_ENABLE(pixman-poly,
477   AC_HELP_STRING([--enable-pixman-poly], [Allow pixman to render polys]),
478   [ 
479     have_pixman_poly="yes"
480     AC_DEFINE(PIXMAN_POLY, 1, [Allow pixman to render polys])
481   ]
482 )
483
484 have_pixman_image="no"
485 AC_ARG_ENABLE(pixman-image,
486   AC_HELP_STRING([--enable-pixman-image], [Allow pixman to render images]),
487   [ 
488     have_pixman_image="yes"
489     AC_DEFINE(PIXMAN_IMAGE, 1, [Allow pixman to render images])
490   ]
491 )
492
493 have_pixman_image_scale_sample="no"
494 AC_ARG_ENABLE(pixman-image-scale-sample,
495   AC_HELP_STRING([--enable-pixman-image-scale-sample], [Allow pixman to render sampled scaled images]),
496   [ 
497     have_pixman_image_scale_sample="yes"
498     AC_DEFINE(PIXMAN_IMAGE_SCALE_SAMPLE, 1, [Allow pixman to render image sampled scaling])
499   ]
500 )
501
502 have_tile_rotate="no"
503 AC_ARG_ENABLE(tile-rotate,
504   AC_HELP_STRING([--enable-tile-rotate], [Enable tiled rotate algorithm]),
505   [ 
506     have_tile_rotate="yes"
507     AC_DEFINE(TILE_ROTATE, 1, [Enable tiled rotate algorithm])
508   ]
509 )
510
511 ### Checks for header files
512 AC_HEADER_STDC
513 AC_CHECK_HEADERS([unistd.h stdint.h sys/param.h netinet/in.h sys/mman.h])
514 EFL_CHECK_PATH_MAX
515
516 ### Checks for types
517 AC_CHECK_TYPES([struct sigaction], [], [],
518                [[#include <signal.h>]])
519
520
521 ### Checks for structures
522
523
524 ### Checks for compiler characteristics
525 AC_C_CONST
526 AC_C_BIGENDIAN
527 AC_PROG_CC_STDC
528 EFL_ATTRIBUTE_UNUSED
529 EFL_ATTRIBUTE_VECTOR
530 EFL_ATTRIBUTE_ALWAYS_INLINE
531
532
533 ### Checks for linker characteristics
534 lt_enable_auto_import=""
535 case "${host_os}" in
536    mingw*)
537       AC_DEFINE(EFL_EVAS_BUILD, 1, [Define to mention that evas is built])
538       lt_enable_auto_import="-Wl,--enable-auto-import"
539    ;;
540 esac
541 AC_SUBST(lt_enable_auto_import)
542
543
544 ### Checks for library functions
545
546 AC_ISC_POSIX
547 AC_CHECK_FUNCS([siglongjmp])
548
549 # alloca
550 AC_FUNC_ALLOCA
551
552 # fnmatch
553 EFL_CHECK_FNMATCH([], [AC_MSG_ERROR([Cannot find fnmatch()])])
554
555 # dlopen
556 dlopen_libs=""
557 case "$host_os" in
558   mingw32ce*)
559 # managed by evil
560     AC_DEFINE(HAVE_DLSYM)
561   ;;
562   mingw*)
563 # nothing on mingw platform
564   ;;
565   *)
566     AC_CHECK_FUNCS(dlsym, res=yes, res=no)
567     if test "x$res" = "xyes"; then
568       AC_DEFINE(HAVE_DLSYM)
569     else
570       AC_CHECK_LIB(dl, dlsym, res=yes, res=no)
571       if test "x$res" = "xyes"; then
572         dlopen_libs=-ldl
573         AC_DEFINE(HAVE_DLSYM)
574       else
575         want_evas_engine_gl_xlib="no"
576         want_evas_engine_gl_xcb="no"
577         want_evas_engine_gl_sdl="no"
578       fi
579     fi
580 esac
581 AC_SUBST(dlopen_libs)
582
583 res=no
584 AC_CHECK_LIB(m, lround, res=yes, res=no)
585 if test "x$res" = "xyes"; then
586   AC_DEFINE(HAVE_LROUND, 1, C99 lround function exists)
587 fi
588
589 if test "x${want_evas_image_loader_generic}" = "xyes" ; then
590    EFL_CHECK_SHM_OPEN
591 fi
592
593 # (shm_open (for cache server)
594 AC_ARG_ENABLE([evas-cserve],
595    AC_HELP_STRING([--disable-evas-cserve],
596       [disable shared cache server support. @<:@default=enabled@:>@]),
597    [
598     if test "x${enableval}" = "xyes" ; then
599        want_evas_cserve="yes"
600     else
601        want_evas_cserve="no"
602     fi
603    ])
604 AC_MSG_CHECKING(whether to build shared cache server and support)
605 AC_MSG_RESULT(${want_evas_cserve})
606
607 # (shm_open (for cache server)
608 AC_ARG_ENABLE([evas-cserve2],
609    AC_HELP_STRING([--disable-evas-cserve2],
610       [disable shared cache server 2 support. @<:@default=enabled@:>@]),
611    [
612     if test "x${enableval}" = "xyes" ; then
613        want_evas_cserve2="yes"
614     else
615        want_evas_cserve2="no"
616     fi
617    ])
618 AC_MSG_CHECKING(whether to build shared cache server 2 and support)
619 AC_MSG_RESULT(${want_evas_cserve2})
620
621 # cserve2 only works on Linux so far.
622 if test "x${want_evas_cserve2}" = "xyes" ; then
623    AC_CHECK_HEADERS(
624       [sys/epoll.h sys/inotify.h sys/signalfd.h],
625       [],
626       [
627        want_evas_cserve2="no"
628       ]
629    )
630 fi
631
632 if test "x${want_evas_cserve2}" = "xyes"; then
633    want_evas_cserve="no"
634 fi
635
636 shm_open_libs=""
637 if test "x${want_evas_cserve}" = "xyes" -o "x${want_evas_cserve2}" = "xyes" ; then
638    EFL_CHECK_SHM_OPEN(
639       [
640        shm_open_libs=${EFL_SHM_OPEN_LIBS}
641       ],
642       [
643        want_evas_cserve="no"
644        want_evas_cserve2="no"
645       ])
646 fi
647 AC_SUBST([shm_open_libs])
648
649 if test "x${want_evas_cserve}" = "xyes" ; then
650   AC_DEFINE(EVAS_CSERVE, 1, [Shared cache server.])
651 fi
652
653 AM_CONDITIONAL([EVAS_CSERVE], [test "x${want_evas_cserve}" = "xyes"])
654
655 if test "x${want_evas_cserve2}" = "xyes" ; then
656   AC_DEFINE(EVAS_CSERVE2, 1, [Shared cache server.])
657 fi
658
659 AM_CONDITIONAL([EVAS_CSERVE2], [test "x${want_evas_cserve2}" = "xyes"])
660
661
662
663 #######################################
664 ## GL force flavor gles
665 gl_flavor_gles="no"
666 AC_MSG_CHECKING(whether to build GLES flavor of GL)
667 AC_ARG_ENABLE(gl-flavor-gles,
668   AC_HELP_STRING([--enable-gl-flavor-gles], [enable gles flavor of gl instead of standard]),
669   [
670       if test "x$enableval" = "xyes" ; then
671         AC_MSG_RESULT(yes)
672         gl_flavor_gles="yes"
673       else
674         AC_MSG_RESULT(no)
675         gl_flavor_gles="no"
676       fi
677   ], [
678       AC_MSG_RESULT(no)
679       gl_flavor_gles="no"
680   ]
681 )
682
683 #######################################
684 ## GLES variety sgx
685 gles_variety_sgx="no"
686 AC_MSG_CHECKING(whether to build GLES variety for SGX)
687 AC_ARG_ENABLE(gles-variety-sgx,
688   AC_HELP_STRING([--enable-gles-variety-sgx], [GLES variety SGX 3D unit]),
689   [
690       if test "x$enableval" = "xyes" ; then
691         AC_MSG_RESULT(yes)
692         AC_DEFINE(GLES_VARIETY_SGX, 1, [Imagination SGX GLES2 support])
693         gles_variety_sgx="yes"
694       else
695         AC_MSG_RESULT(no)
696         gles_variety_sgx="no"
697       fi
698   ], [
699       AC_MSG_RESULT(no)
700       gles_variety_sgx="no"
701   ]
702 )
703
704 #######################################
705 ## GLES variety s3c6410
706 gles_variety_s3c6410="no"
707 AC_MSG_CHECKING(whether to build GLES variety for s3c6410)
708 AC_ARG_ENABLE(gles-variety-s3c6410,
709   AC_HELP_STRING([--enable-gles-variety-s3c6410], [GLES variety s3c6410 3D unit]),
710   [
711       if test "x$enableval" = "xyes" ; then
712         AC_MSG_RESULT(yes)
713         AC_DEFINE(GLES_VARIETY_S3C6410, 1, [Samsung S3c6410 GLES2 support])
714         gles_variety_s3c6410="yes"
715       else
716         AC_MSG_RESULT(no)
717         gles_variety_s3c6410="no"
718       fi
719   ], [
720       AC_MSG_RESULT(no)
721       gles_variety_s3c6410="no"
722   ]
723 )
724
725 if test "x$gl_flavor_gles" = "xyes"; then
726   eng=""
727   if test "x$gles_variety_sgx" = "xyes"; then eng="x"$eng; fi
728   if test "x$gles_variety_s3c6410" = "xyes"; then eng="x"$eng; fi
729   if test "x$eng" = "xx"; then
730     eng=""
731   else
732      AC_MSG_ERROR(
733        [Please enable just 1 OpenGL-ES flavor. Choices are:
734           --enable-gles-variety-sgx (Most GL-ES2 GPUs with shader compiler)
735           --enable-gles-variety-s3c6410 (s3c6410 with offline shader compiler)
736         You will also need to enable the OpenGL engine for X11 with:
737           --enable-gl-xlib or --enable-gl-xcb
738        ])
739   fi
740 fi
741
742 #####################################################################
743 ## Engines
744
745 EVAS_CHECK_ENGINE([buffer], [${want_evas_engine_buffer}], [yes], [Buffer])
746
747 EVAS_CHECK_ENGINE([software-gdi], [${want_evas_engine_software_gdi}], [no], [Software GDI])
748
749 EVAS_CHECK_ENGINE([software-ddraw], [${want_evas_engine_software_ddraw}], [no], [Software DirectDraw])
750
751 EVAS_CHECK_ENGINE([direct3d], [${want_evas_engine_direct3d}], [no], [Direct3D])
752
753 EVAS_CHECK_ENGINE([psl1ght], [${want_evas_engine_psl1ght}], [no], [PSL1GHT])
754
755 EVAS_CHECK_ENGINE([gl-sdl], [${want_evas_engine_gl_sdl}], [no], [OpenGL SDL])
756
757 EVAS_CHECK_ENGINE([gl-cocoa], [${want_evas_engine_gl_cocoa}], [no], [OpenGL Cocoa])
758
759 EVAS_CHECK_ENGINE([fb], [${want_evas_engine_fb}], [no], [Framebuffer])
760
761 EVAS_CHECK_ENGINE([directfb], [${want_evas_engine_directfb}], [no], [DirectFB])
762
763 EVAS_CHECK_ENGINE([software-8-x11], [${want_evas_engine_software_8_x11}], [no], [Software X11 8 bits grayscale])
764
765 EVAS_CHECK_ENGINE([software-16-x11], [${want_evas_engine_software_16_x11}], [no], [Software X11 16 bits])
766
767 EVAS_CHECK_ENGINE([software-16-wince], [${want_evas_engine_software_16_wince}], [no], [Software Windows CE 16 bits])
768
769 EVAS_CHECK_ENGINE([software-16-sdl], [${want_evas_engine_software_16_sdl}], [no], [Software SDL 16 bits])
770
771 EVAS_CHECK_ENGINE([wayland-shm], [${want_evas_engine_wayland_shm}], [no], [Wayland Shm])
772
773 EVAS_CHECK_ENGINE([wayland-egl], [${want_evas_engine_wayland_egl}], [no], [Wayland Egl])
774
775 # SDL primitive
776 sdl_primitive="no"
777
778 AC_ARG_ENABLE([sdl-primitive],
779    [AC_HELP_STRING([--enable-sdl-primitive], [])],
780    [sdl_primitive=${enableval}]
781 )
782 AC_MSG_CHECKING([whether to use SDL primitive when possible])
783 AC_MSG_RESULT([${sdl_primitive}])
784
785 if test "x${sdl_primitive}" = "xyes" ; then
786    AC_DEFINE([ENGINE_SDL_PRIMITIVE], [1], [Use SDL primitive when possible])
787 fi
788
789 # if software generic need to be build as part of libevas.so
790 have_static_software_generic="no"
791 AC_ARG_ENABLE([static-software-generic],
792    [AC_HELP_STRING([--enable-static-software-generic], [Build software generic engine as part of libevas])],
793    [have_static_software_generic=${enableval}]
794 )
795 AC_MSG_CHECKING([Whether to build software generic engine as part of libevas])
796 AC_MSG_RESULT([${have_static_software_generic}])
797
798 if test "x${have_static_module}" = "xyes" -a "x${have_static_software_generic}" = "xno"; then
799    AC_MSG_WARN([Forcing --enable-static-software-generic as engines must be compiled statically])
800    have_static_software_generic="yes"
801 fi
802
803 AM_CONDITIONAL(EVAS_STATIC_BUILD_SOFTWARE_GENERIC, test "x${have_static_software_generic}" = "xyes")
804 if test "x${have_static_software_generic}" = "xyes"; then
805    AC_DEFINE(EVAS_STATIC_BUILD_SOFTWARE_GENERIC, [1], [Build software generic engine as part of libevas])
806 fi
807
808
809 ######## Software Engine ########
810 have_evas_engine_software_x11="no"
811 have_evas_engine_software_xcb="no"
812 have_evas_engine_software_xlib="no"
813 build_software_xcb=
814
815 ## XCB Checks ##
816 want_xcb="no"
817 AC_MSG_CHECKING(whether to build Software XCB Engine)
818 AC_ARG_ENABLE(software-xcb,
819   AC_HELP_STRING([--enable-software-xcb], [enable Software XCB Engine. @<:@default=disabled@:>@]), [want_xcb=$enableval]
820 )
821 if test "x$want_xcb" != "xno" ; then
822   EVAS_CHECK_ENGINE([software-xcb], [${want_evas_engine_software_xcb}], [no], [Software XCB])
823   if test "x$have_evas_engine_software_xcb" != "xno" ; then
824     build_software_xcb="yes"
825     have_evas_engine_software_x11="yes"
826     AC_DEFINE_UNQUOTED(BUILD_ENGINE_SOFTWARE_X11, [1], [Build software X11 engine])
827     AC_DEFINE_UNQUOTED(BUILD_ENGINE_SOFTWARE_XCB, [1], [Build software XCB backend])
828   fi
829 else
830   AC_MSG_RESULT(no)
831   build_software_xcb="no"
832 fi
833
834 ## If we are not building XCB, then we can build XLib ##
835
836 if test "x$build_software_xcb" = "xno" ; then
837   EVAS_CHECK_ENGINE([software-xlib], [${want_evas_engine_software_xlib}], [no], [Software Xlib])
838   # if software_x11 is available, define everything needed for X11
839   if test "x$have_evas_engine_software_xlib" != "xno" ; then
840     have_evas_engine_software_x11="yes"
841     AC_DEFINE_UNQUOTED(BUILD_ENGINE_SOFTWARE_X11, [1], [Build software X11 engine])
842     AC_DEFINE_UNQUOTED(BUILD_ENGINE_SOFTWARE_XLIB, [1], [Build software Xlib backend])
843   fi
844 else
845   have_evas_engine_software_xlib="no"
846 fi
847
848 if test "x$have_evas_engine_software_xlib" = "xstatic" -o "x$have_evas_engine_software_xcb" = "xstatic"; then
849    AC_DEFINE_UNQUOTED(EVAS_STATIC_BUILD_SOFTWARE_X11, [1], [Build software X11 engine as part of libevas])
850 fi
851
852 AC_SUBST(have_evas_engine_software_xcb)
853 AC_SUBST(have_evas_engine_software_xlib)
854
855 AM_CONDITIONAL([BUILD_ENGINE_SOFTWARE_XLIB], [test "x${have_evas_engine_software_xlib}" != "xno"])
856 AM_CONDITIONAL([BUILD_ENGINE_SOFTWARE_XCB], [test "x${have_evas_engine_software_xcb}" != "xno"])
857 AM_CONDITIONAL([BUILD_ENGINE_SOFTWARE_X11], [test "x${have_evas_engine_software_x11}" != "xno"])
858
859 AM_CONDITIONAL([EVAS_STATIC_BUILD_SOFTWARE_X11], [test "x${have_evas_engine_software_xcb}" = "xstatic" -o "x${have_evas_engine_software_xlib}" = "xstatic"])
860 AM_CONDITIONAL([EVAS_STATIC_BUILD_SOFTWARE_XLIB], [test "x${have_evas_engine_software_xlib}" = "xstatic"])
861 AM_CONDITIONAL([EVAS_STATIC_BUILD_SOFTWARE_XCB], [test "x${have_evas_engine_software_xcb}" = "xstatic"])
862
863 AC_SUBST(have_evas_engine_software_x11)
864
865
866 ######## OpenGL Engine ########
867 have_evas_engine_gl_x11="no"
868 have_evas_engine_gl_xcb="no"
869 build_gl_xcb="no"
870
871 ## XCB Checks ##
872 want_gl_xcb="no"
873 AC_MSG_CHECKING(whether to build OpenGL XCB Engine)
874 AC_ARG_ENABLE(gl-xcb,
875   AC_HELP_STRING([--enable-gl-xcb], [enable OpenGL XCB Engine. @<:@default=disabled@:>@]), [want_gl_xcb=$enableval]
876 )
877 if test "x$want_gl_xcb" = "xyes" ; then
878   EVAS_CHECK_ENGINE([gl-xcb], [${want_evas_engine_gl_xcb}], [no], [OpenGL XCB])
879   if test "x$have_evas_engine_gl_xcb" != "xno" ; then
880     build_gl_xcb="yes"
881     have_evas_engine_gl_x11="yes"
882    AC_DEFINE(BUILD_ENGINE_GL_X11, [1], [Build GL X11 engine])
883    AC_DEFINE(BUILD_ENGINE_GL_XCB, [1], [Build GL Xcb backend])
884     if test "x$have_evas_engine_gl_xcb" = "xstatic" ; then
885       AC_DEFINE(EVAS_STATIC_BUILD_GL_X11, [1], [Build GL X11 engine as part of libevas])
886     fi
887   fi
888   AC_SUBST(have_evas_engine_gl_xcb)
889 else
890   AC_MSG_RESULT(no)
891   build_gl_xcb="no"
892 fi
893
894 ## If we are not building XCB, then we can build XLib ##
895
896 if test "x$build_gl_xcb" = "xno" ; then
897   EVAS_CHECK_ENGINE([gl-xlib], [${want_evas_engine_gl_xlib}], [no], [OpenGL XLib])
898   if test "x$have_evas_engine_gl_xlib" != "xno" ; then
899     have_evas_engine_gl_x11="yes"
900     AC_DEFINE_UNQUOTED(BUILD_ENGINE_GL_X11, [1], [Build OpenGL X11 engine])
901     AC_DEFINE_UNQUOTED(BUILD_ENGINE_GL_XLIB, [1], [Build OpenGL Xlib backend])
902     if test "x$have_evas_engine_gl_xlib" = "xstatic" ; then
903       AC_DEFINE_UNQUOTED(EVAS_STATIC_BUILD_GL_X11, [1], [Build OpenGL X11 engine as part of libevas])
904     fi
905   fi
906 else
907   have_evas_engine_gl_xlib="no"
908 fi
909 AC_SUBST(have_evas_engine_gl_xlib)
910
911 AM_CONDITIONAL([BUILD_ENGINE_GL_XLIB], [test "x${have_evas_engine_gl_xlib}" != "xno"])
912 AM_CONDITIONAL([BUILD_ENGINE_GL_XCB], [test "x${have_evas_engine_gl_xcb}" != "xno"])
913 AM_CONDITIONAL([BUILD_ENGINE_GL_X11], [test "x${have_evas_engine_gl_x11}" != "xno"])
914
915 AM_CONDITIONAL([EVAS_STATIC_BUILD_GL_X11], [test "x${have_evas_engine_gl_xcb}" = "xstatic" -o "x${have_evas_engine_gl_xlib}" = "xstatic"])
916 AM_CONDITIONAL([EVAS_STATIC_BUILD_GL_XLIB], [test "x${have_evas_engine_gl_xlib}" = "xstatic"])
917 AM_CONDITIONAL([EVAS_STATIC_BUILD_GL_XCB], [test "x${have_evas_engine_gl_xcb}" = "xstatic"])
918
919 AC_SUBST(have_evas_engine_gl_x11)
920
921 # common gl
922 have_evas_engine_gl_common="no"
923 have_static_evas_engine_gl_common="no"
924 if test "x$have_evas_engine_gl_xlib" = "xyes" \
925    || test "x$have_evas_engine_gl_xcb" = "xyes" \
926    || test "x$have_evas_engine_gl_sdl" = "xyes" \
927    || test "x$have_evas_engine_gl_cocoa" = "xyes" \
928    || test "x$have_evas_engine_wayland_egl" = "xyes"; then
929    have_evas_engine_gl_common="yes"
930 fi
931 if test "x$have_evas_engine_gl_xlib" = "xstatic" \
932    || test "x$have_evas_engine_gl_xcb" = "xstatic" \
933    || test "x$have_evas_engine_gl_sdl" = "xstatic" \
934    || test "x$have_evas_engine_gl_cocoa" = "xstatic" \
935    || test "x$have_evas_engine_wayland_egl" = "xstatic"; then
936    have_evas_engine_gl_common="yes"
937    have_static_evas_engine_gl_common="yes"
938 fi
939
940 if test "x$have_evas_engine_gl_common" = "xyes"; then
941    evas_engine_gl_common_libs=""
942    AC_DEFINE(BUILD_ENGINE_GL_COMMON, [1], [Generic OpenGL Rendering Support])
943 fi
944
945 AC_SUBST([evas_engine_gl_common_libs])
946
947 AM_CONDITIONAL(BUILD_ENGINE_GL_COMMON, [test "x$have_evas_engine_gl_common" = "xyes"])
948
949 AM_CONDITIONAL(EVAS_STATIC_BUILD_GL_COMMON, test "x${have_static_evas_engine_gl_common}" = "xyes")
950 if test "x${have_static_evas_engine_gl_common}" = "xyes"; then
951    AC_DEFINE(EVAS_STATIC_BUILD_GL_COMMON, [1], [Build GL generic engine as part of libevas])
952 fi
953
954 # gl_sdl
955 if test "x$have_evas_engine_gl_sdl" = "xyes" || test "x$have_evas_engine_gl_sdl" = "xstatic" ; then
956    AC_CHECK_DECL(SDL_GL_CONTEXT_MAJOR_VERSION,
957       [AC_DEFINE(HAVE_SDL_GL_CONTEXT_VERSION, [1], [SDL_GL version attributes present])],,
958       [#include <SDL/SDL_video.h>])
959 fi
960
961 if test "x$gl_flavor_gles" = "xyes"; then
962    AC_CHECK_DECL(SDL_OPENGLES,
963       [AC_DEFINE(HAVE_SDL_FLAG_OPENGLES, [1], [SDL_OPENGLES flag is present])],,
964       [#include <SDL/SDL_video.h>])
965 fi
966
967 # if software 16 x11 is enabled - build software_16 (the generic 16bit
968 # engine). later enable it fb_16 or other "16" bit engines are enabled.
969 have_evas_engine_software_16="no"
970 if test "x$have_evas_engine_software_16_x11" = "xyes" -o "x$have_evas_engine_software_16_x11" = "xstatic"; then
971    have_evas_engine_software_16="yes"
972 fi
973 if test "x$have_evas_engine_software_16_sdl" = "xyes" -o "x$have_evas_engine_software_16_sdl" = "xstatic"; then
974    have_evas_engine_software_16="yes"
975 fi
976 if test "x$have_evas_engine_software_16_wince" = "xyes" -o "x$have_evas_engine_software_16_wince" = "xstatic"; then
977    have_evas_engine_software_16="yes"
978 fi
979 AM_CONDITIONAL(BUILD_ENGINE_SOFTWARE_16, test "x$have_evas_engine_software_16" = "xyes")
980
981 # if software 16 need to be build as part of libevas.so
982 have_static_software_16="no"
983 AC_ARG_ENABLE([static-software-16],
984    [AC_HELP_STRING([--enable-static-software-16], [Build software 16 engine as part of libevas])],
985    [have_static_software_16=${enableval}]
986 )
987 AC_MSG_CHECKING([Whether to build software 16 engine as part of libevas])
988 AC_MSG_RESULT([${have_static_software_16}])
989
990 AM_CONDITIONAL(EVAS_STATIC_BUILD_SOFTWARE_16, test "x${have_static_software_16}" = "xyes")
991 if test "x${have_static_software_16}" = "xyes"; then
992    AC_DEFINE(EVAS_STATIC_BUILD_SOFTWARE_16, [1], [Build software 16 engine as part of libevas])
993 fi
994
995 # if software 8 x11 is enabled - build software_8 (the generic 8bit
996 # engine).
997 have_evas_engine_software_8="no"
998 if test "x$have_evas_engine_software_8_x11" = "xyes" -o "x$have_evas_engine_software_8_x11" = "xstatic"; then
999    have_evas_engine_software_8="yes"
1000 fi
1001 AM_CONDITIONAL(BUILD_ENGINE_SOFTWARE_8, test "x$have_evas_engine_software_8" = "xyes")
1002
1003 # if software 8 need to be build as part of libevas.so
1004 have_static_software_8="no"
1005 AC_ARG_ENABLE([static-software-8],
1006    [AC_HELP_STRING([--enable-static-software-8], [Build software 8 engine as part of libevas])],
1007    [have_static_software_8=${enableval}]
1008 )
1009 AC_MSG_CHECKING([Whether to build software 8 engine as part of libevas])
1010 AC_MSG_RESULT([${have_static_software_8}])
1011
1012 AM_CONDITIONAL(EVAS_STATIC_BUILD_SOFTWARE_8, test "x${have_static_software_8}" = "xyes")
1013 if test "x${have_static_software_8}" = "xyes"; then
1014    AC_DEFINE(EVAS_STATIC_BUILD_SOFTWARE_8, [1], [Build software 8 engine as part of libevas])
1015 fi
1016
1017 #####################################################################
1018 ## Image loaders
1019
1020 EVAS_CHECK_IMAGE_LOADER([Edb], [${want_evas_image_loader_edb}])
1021
1022 EVAS_CHECK_IMAGE_LOADER([Eet], [${want_evas_image_loader_eet}])
1023 EVAS_CHECK_FONT_LOADER([${want_evas_font_loader_eet}])
1024
1025 EVAS_CHECK_IMAGE_LOADER([Gif], [${want_evas_image_loader_gif}])
1026
1027 have_evas_image_saver_jpeg="no"
1028 EVAS_CHECK_IMAGE_LOADER([Jpeg], [${want_evas_image_loader_jpeg}])
1029
1030 dnl Windows has no sigsetjmp function, nor equivalent.
1031 dnl So we disable the jpeg saver.
1032 dnl TODO: must find a workaround
1033 case "$host_os" in
1034    mingw*)
1035       ;;
1036    *)
1037       if test "x${have_evas_image_loader_jpeg}" = "xyes" ; then
1038          AC_DEFINE(EVAS_BUILD_SAVER_JPEG, [1], [Build JPEG saver])
1039          have_evas_image_saver_jpeg="yes"
1040       fi
1041       ;;
1042 esac
1043 AM_CONDITIONAL([BUILD_SAVER_JPEG], [test "x${have_evas_image_saver_jpeg}" = "xyes"])
1044
1045 EVAS_CHECK_IMAGE_LOADER([PMAPS], [${want_evas_image_loader_pmaps}])
1046
1047 EVAS_CHECK_IMAGE_LOADER([PNG], [${want_evas_image_loader_png}])
1048
1049 EVAS_CHECK_IMAGE_LOADER([SVG], [${want_evas_image_loader_svg}])
1050
1051 EVAS_CHECK_IMAGE_LOADER([Tiff], [${want_evas_image_loader_tiff}])
1052
1053 EVAS_CHECK_IMAGE_LOADER([XPM], [${want_evas_image_loader_xpm}])
1054
1055 EVAS_CHECK_IMAGE_LOADER([BMP], [${want_evas_image_loader_bmp}])
1056
1057 EVAS_CHECK_IMAGE_LOADER([TGA], [${want_evas_image_loader_tga}])
1058
1059 EVAS_CHECK_IMAGE_LOADER([WBMP], [${want_evas_image_loader_wbmp}])
1060
1061 EVAS_CHECK_IMAGE_LOADER([ICO], [${want_evas_image_loader_ico}])
1062
1063 EVAS_CHECK_IMAGE_LOADER([PSD], [${want_evas_image_loader_psd}])
1064
1065 EVAS_CHECK_IMAGE_LOADER([GENERIC], [${want_evas_image_loader_generic}])
1066
1067 #####################################################################
1068 ## Cpu based optimizations
1069
1070 #######################################
1071 ## PTHREADS
1072 pthread_cflags=""
1073 pthread_libs=""
1074 build_pthreads="no"
1075 has_pthreads="no"
1076 need_pthreads="no"
1077 # basic pthread support
1078 AC_CHECK_HEADER(pthread.h,
1079   [
1080    has_pthreads="yes"
1081   ],
1082   [
1083    has_pthreads="no"
1084   ]
1085 )
1086
1087 # sched_getaffinity pthread_attr_setaffinity_np
1088 AC_CHECK_HEADERS([pthread.h sched.h],
1089    [
1090     CFLAGS_save="${CFLAGS}"
1091     CFLAGS="${CFLAGS} -pthread"
1092     LIBS_save="${LIBS}"
1093     LIBS="${LIBS} -pthread"
1094     AC_LINK_IFELSE(
1095       [AC_LANG_PROGRAM([[
1096 #include <pthread.h>
1097 #include <sched.h>
1098                        ]],
1099                        [[
1100 pthread_attr_setaffinity_np(NULL, 0, NULL);
1101 pthread_barrier_wait(NULL);
1102                        ]])],
1103       [build_pthreads="yes"],
1104       [build_pthreads="no"])
1105    CFLAGS=${CFLAGS_save}
1106    LIBS=${LIBS_save}
1107   ],
1108   [build_pthreads="no"])
1109
1110 AC_MSG_CHECKING([whether pthread_attr_setaffinity_np() and pthread_barrier_wait() are supported])
1111 AC_MSG_RESULT([${build_pthreads}])
1112
1113 #######################################
1114 ## Pthread
1115 AC_MSG_CHECKING(whether to build pthread code)
1116 AC_ARG_ENABLE(pthreads,
1117   AC_HELP_STRING([--enable-pthreads], [enable threaded rendering]),
1118   [
1119     if test "x$enableval" = "xyes" ; then
1120       if test "x$build_pthreads" = "xyes"; then
1121         AC_MSG_RESULT(yes)
1122         AC_DEFINE(BUILD_PTHREAD, 1, [Build Threaded Rendering])
1123         build_pthreads="yes"
1124         need_pthreads="yes"
1125       else
1126         if "x$use_strict" = "xyes"; then
1127           AC_MSG_ERROR(pthreads headers or functions not found (strict dependencies checking))
1128         else
1129           AC_MSG_RESULT(no: pthread headers or functions not found)
1130         fi
1131       fi
1132     else
1133       AC_MSG_RESULT(no)
1134       build_pthreads="no"
1135     fi
1136   ],
1137   [
1138     AC_MSG_RESULT($build_pthreads)
1139     if test "x$build_pthreads" = "xyes" ; then
1140       AC_DEFINE(BUILD_PTHREAD, 1, [Build Threaded Rendering])
1141       need_pthreads="yes"
1142     fi
1143   ]
1144 )
1145
1146 #######################################
1147 ## Pipe Renderer
1148 build_pipe_render="no"
1149
1150 # Let disable pipe render strongly as it doesn't massively improve performance, but
1151 # just hammer more watt for a few more percent. The code is kept as the understanding
1152 # is that with an async pipeline things will be better.
1153 #
1154 #AC_MSG_CHECKING(whether to build Threaded Pipe Rendering support)
1155 #AC_ARG_ENABLE(pipe-render,
1156 #  AC_HELP_STRING([--enable-pipe-render], [enable threaded pipe rendering support]),
1157 #  [ build_pipe_render=$enableval ]
1158 #)
1159 #AC_MSG_RESULT($build_pipe_render)
1160
1161 #AC_MSG_CHECKING(whether we can build Threaded Pipe Rendering support)
1162 #if test \( "x$build_pipe_render" = "xyes" -o "x$build_pipe_render" = "xauto" \); then
1163 #  AC_MSG_RESULT(yes)
1164 #  AC_DEFINE(BUILD_PIPE_RENDER, 1, [Build pipe render support])
1165 #  build_pipe_render="yes"
1166 #  need_pthreads="yes"
1167 #else
1168 #  AC_MSG_RESULT(no)
1169 #  build_pipe_render="no"
1170 #fi
1171
1172 #######################################
1173 ## Async events
1174 build_async_events="auto"
1175 AC_MSG_CHECKING(whether to build Async Events support)
1176 AC_ARG_ENABLE(async-events,
1177   AC_HELP_STRING([--enable-async-events], [enable async events support]),
1178   [ build_async_events=$enableval ]
1179 )
1180 AC_MSG_RESULT($build_async_events)
1181
1182 AC_MSG_CHECKING(whether we can build Async Events support)
1183 if test "x$build_async_events" = "xyes" || test "x$build_async_events" = "xauto" ; then
1184   AC_MSG_RESULT(yes)
1185   AC_DEFINE(BUILD_ASYNC_EVENTS, 1, [Build async events support])
1186   build_async_events="yes"
1187 else
1188   AC_MSG_RESULT(no)
1189   build_async_events="no"
1190 fi
1191
1192 #######################################
1193 ## Async image preload
1194 build_async_preload="auto"
1195 AC_MSG_CHECKING(whether to build Async Image Preload support)
1196 AC_ARG_ENABLE(async-preload,
1197   AC_HELP_STRING([--enable-async-preload], [enable async image preloading support]),
1198   [ build_async_preload=$enableval ]
1199 )
1200 AC_MSG_RESULT($build_async_preload)
1201
1202 AC_MSG_CHECKING(whether we can build Async Image Preload support)
1203 if test \( "x$build_async_preload" = "xyes" -o "x$build_async_preload" = "xauto" \) -a "x$build_async_events" = "xyes"; then
1204   AC_MSG_RESULT(yes)
1205   AC_DEFINE(BUILD_ASYNC_PRELOAD, 1, [Build async image preload support])
1206   build_async_preload="yes"
1207   need_pthreads="yes"
1208 else
1209   AC_MSG_RESULT(no)
1210   build_async_preload="no"
1211 fi
1212
1213 #######################################
1214 ## Link with pthread if needed
1215 AC_MSG_CHECKING(whether we should link with pthread)
1216 if test "x$need_pthreads" = "xyes"; then
1217   AC_MSG_RESULT(yes)
1218   pthread_cflags="-pthread"
1219   pthread_libs="-pthread"
1220 else
1221   AC_MSG_RESULT(no)
1222 fi
1223
1224 #######################################
1225 ## MMX
1226 build_cpu_mmx="no"
1227 case $host_cpu in
1228   i*86)
1229     build_cpu_mmx="yes"
1230     ;;
1231   x86_64)
1232     build_cpu_mmx="yes"
1233     ;;
1234   amd64)
1235     build_cpu_mmx="yes"
1236     ;;
1237 esac
1238 AC_MSG_CHECKING(whether to build mmx code)
1239 AC_ARG_ENABLE(cpu-mmx,
1240   AC_HELP_STRING([--enable-cpu-mmx], [enable mmx code]),
1241   [
1242       if test "x$enableval" = "xyes" ; then
1243         AC_MSG_RESULT(yes)
1244         AC_DEFINE(BUILD_MMX, 1, [Build MMX Code])
1245         build_cpu_mmx="yes"
1246       else
1247         AC_MSG_RESULT(no)
1248         build_cpu_mmx="no"
1249       fi
1250   ],
1251   [
1252     AC_MSG_RESULT($build_cpu_mmx)
1253     if test "x$build_cpu_mmx" = "xyes" ; then
1254       AC_DEFINE(BUILD_MMX, 1, [Build MMX Code])
1255     fi
1256   ]
1257 )
1258
1259 #######################################
1260 ## SSE
1261 build_cpu_sse="no"
1262 case $host_cpu in
1263   i*86)
1264     build_cpu_sse="yes"
1265     ;;
1266   x86_64)
1267     build_cpu_sse="yes"
1268     ;;
1269   amd64)
1270     build_cpu_sse="yes"
1271     ;;
1272 esac
1273 AC_MSG_CHECKING(whether to build sse code)
1274 AC_ARG_ENABLE(cpu-sse,
1275   AC_HELP_STRING([--enable-cpu-sse], [enable sse code]),
1276   [
1277       if test "x$enableval" = "xyes" ; then
1278         AC_MSG_RESULT(yes)
1279         AC_DEFINE(BUILD_SSE, 1, [Build SSE Code])
1280         build_cpu_sse="yes"
1281       else
1282         AC_MSG_RESULT(no)
1283         build_cpu_sse="no"
1284       fi
1285   ],
1286   [
1287     AC_MSG_RESULT($build_cpu_sse)
1288     if test "x$build_cpu_sse" = "xyes" ; then
1289       AC_DEFINE(BUILD_SSE, 1, [Build SSE Code])
1290     fi
1291   ]
1292 )
1293
1294 #######################################
1295 ## SSE3
1296 build_cpu_sse3="no"
1297 case $host_cpu in
1298   i*86)
1299     build_cpu_sse3="yes"
1300     ;;
1301   x86_64)
1302     build_cpu_sse3="yes"
1303     ;;
1304   amd64)
1305     build_cpu_sse3="yes"
1306     ;;
1307 esac
1308 AC_MSG_CHECKING(whether to build sse3 code)
1309 AC_ARG_ENABLE(cpu-sse3,
1310   AS_HELP_STRING([--enable-cpu-sse3], [enable sse3 code]),
1311   [
1312       if test "x$enableval" = "xyes" ; then
1313         AC_CHECK_HEADER(immintrin.h,
1314           [
1315             AC_MSG_RESULT(yes)
1316             AC_DEFINE(BUILD_SSE3, 1, [Build SSE3 Code])
1317             build_cpu_sse3="yes"
1318            ],
1319           [
1320             AC_MSG_RESULT(no)
1321             build_cpu_sse3="no"
1322           ])
1323       else
1324         AC_MSG_RESULT(no)
1325         build_cpu_sse3="no"
1326       fi
1327   ],
1328   [
1329     AC_MSG_RESULT($build_cpu_sse3)
1330     if test "x$build_cpu_sse3" = "xyes" ; then
1331       AC_CHECK_HEADER(immintrin.h,
1332         [
1333           AC_MSG_RESULT(yes)
1334           AC_DEFINE(BUILD_SSE3, 1, [Build SSE3 Code])
1335           build_cpu_sse3="yes"
1336          ],
1337         [
1338           AC_MSG_RESULT(no)
1339           build_cpu_sse3="no"
1340         ])
1341     fi
1342   ]
1343 )
1344
1345
1346 # as a big warning flag to anyone doing stuff like this...
1347 # NEVER EVER EVER EVER put **OPTIMIZATION** flags in
1348 # build flags in makefiles (from configure or anywhere else)
1349 # EVER as this screws your ability to build 1 binary and
1350 # cover ALL x86 arch's. This is the HEIGHT of WRONG. If the
1351 # person building choses to add optimization flags themselves
1352 # and decide the minimum baseline cpu arch is X then that's
1353 # their business, but NEVER should it be done here. NEVER.
1354 # I now have to do this due to the way this sse3 code was done - using
1355 # intrinsics and "functions" (opcodes) and types that only compile *IF*
1356 # you compile with -msse3. this ALSO tries to optimize REGULAR c code
1357 # with sse3 asm.. and this breaks things so badly. so... sse3 will be
1358 # off until further notice for 32bit x86.
1359 EVAS_SSE3_CFLAGS=" "
1360 if test "x$build_cpu_sse3" = "xyes" ; then
1361     EVAS_SSE3_CFLAGS="-msse3 "
1362 #   CFLAGS="${CFLAGS} ${EVAS_SSE3_CFLAGS}"
1363 fi
1364
1365 AC_SUBST(CFLAGS)
1366 AC_SUBST(EVAS_SSE3_CFLAGS)
1367
1368 #######################################
1369 ## ALTIVEC
1370 build_cpu_altivec="no"
1371 case $host_cpu in
1372   *power* | *ppc*)
1373     build_cpu_altivec="auto"
1374     ;;
1375 esac
1376 altivec_cflags=""
1377 AC_MSG_CHECKING(whether to build altivec code)
1378 AC_ARG_ENABLE(cpu-altivec,
1379   AC_HELP_STRING([--enable-cpu-altivec], [enable altivec code]),
1380   [ build_cpu_altivec=$enableval ],
1381   [
1382     if test ! "x$build_cpu_altivec" = "xauto"; then
1383       build_cpu_altivec="no"
1384     fi
1385   ]
1386 )
1387 AC_MSG_RESULT($build_cpu_altivec)
1388
1389 if test "x$build_cpu_altivec" = "xyes"; then
1390    AC_CHECK_HEADER(altivec.h,
1391      [
1392         AC_DEFINE(BUILD_ALTIVEC, 1, [Build Altivec Code])
1393         AC_DEFINE(HAVE_ALTIVEC_H, 1, [Have altivec.h header file])
1394         build_cpu_altivec="yes"
1395      ],
1396      [
1397        save_CFLAGS=$CFLAGS
1398        save_CPPFLAGS=$CPPFLAGS
1399        CFLAGS=$CFLAGS" -maltivec"
1400        CPPFLAGS=$CPPFLAGS" -maltivec"
1401        unset ac_cv_header_altivec_h
1402        AC_CHECK_HEADER(altivec.h,
1403          [
1404             AC_DEFINE(BUILD_ALTIVEC, 1, [Build Altivec Code])
1405             AC_DEFINE(HAVE_ALTIVEC_H, 1, [Have altivec.h header file])
1406             build_cpu_altivec="yes"
1407          ],
1408          [
1409             if test "x$build_cpu_altivec" = "xyes" -a "x$use_strict" = "xyes" ; then
1410               AC_MSG_ERROR(Altivec not found (strict dependencies checking))
1411             fi
1412             build_cpu_altivec="no"
1413          ]
1414        )
1415        CFLAGS=$save_CFLAGS
1416        CPPFLAGS=$save_CPPFLAGS
1417      ]
1418    )
1419 fi
1420
1421 if test "x$build_cpu_altivec" = "xyes"; then
1422    AC_MSG_CHECKING(whether to use altivec compiler flag)
1423    if test "x$GCC" = "xyes"; then
1424       if echo "int main(){return 0;}" | ${CPP} -faltivec - > /dev/null 2>&1; then
1425          altivec_cflags="-faltivec"
1426          AC_DEFINE(BUILD_ALTIVEC, 1, [Build Altivec Code])
1427       elif echo "int main(){return 0;}" | ${CPP} -maltivec - > /dev/null 2>&1; then
1428          altivec_cflags="-maltivec"
1429          AC_DEFINE(BUILD_ALTIVEC, 1, [Build Altivec Code])
1430       fi
1431    fi
1432   AC_MSG_RESULT($altivec_cflags)
1433    CFLAGS="$CFLAGS $altivec_cflags"
1434 fi
1435
1436 #######################################
1437 ## NEON
1438 build_cpu_neon="no"
1439 case $host_cpu in
1440   arm*)
1441     build_cpu_neon="yes"
1442     ;;
1443 esac
1444 AC_MSG_CHECKING(whether to build neon code)
1445 AC_ARG_ENABLE(cpu-neon,
1446   AC_HELP_STRING([--enable-cpu-neon], [build neon code, the code will be
1447           checked at run time to see if the CPU supports it]),
1448   [
1449      if test "x$enableval" = "xyes" ; then
1450        AC_TRY_COMPILE([],
1451         [asm volatile (".fpu neon\nvqadd.u8 d0, d1, d0\n")],
1452         [
1453           AC_MSG_RESULT(yes)
1454           AC_DEFINE(BUILD_NEON, 1, [Build NEON Code])
1455           build_cpu_neon="yes"
1456         ],[
1457           AC_MSG_RESULT(no)
1458           build_cpu_neon="no"
1459         ])
1460       else
1461         AC_MSG_RESULT(no)
1462         build_cpu_neon="no"
1463       fi
1464   ],
1465   [
1466     if test "x$build_cpu_neon" = "xyes" ; then
1467        AC_TRY_COMPILE([#include <arm_neon.h>],
1468         [asm volatile ("vqadd.u8 d0, d1, d0\n")],
1469         [
1470           AC_MSG_RESULT(yes)
1471           AC_DEFINE(BUILD_NEON, 1, [Build NEON Code])
1472           build_cpu_neon="yes"
1473         ],[
1474           AC_MSG_RESULT(no)
1475           build_cpu_neon="no"
1476         ])
1477     fi
1478   ]
1479 )
1480      
1481 #######################################
1482 ## C
1483 build_cpu_c="yes"
1484 AC_MSG_CHECKING(whether to build c code)
1485 AC_ARG_ENABLE(cpu-c,
1486   AC_HELP_STRING([--enable-cpu-c], [enable C code]),
1487   [
1488       if test "x$enableval" = "xyes" ; then
1489         AC_MSG_RESULT(yes)
1490         AC_DEFINE(BUILD_C, 1, [Build plain C code])
1491         build_cpu_c="yes"
1492       else
1493         AC_MSG_RESULT(no)
1494         build_cpu_c="no"
1495       fi
1496   ], [
1497       AC_MSG_RESULT($build_cpu_c)
1498       if test "x$build_cpu_c" = "xyes" ; then
1499         AC_DEFINE(BUILD_C, 1, [Build plain C code])
1500       fi
1501   ]
1502 )
1503
1504 #######################################
1505 ## MAGIC_DEBUG
1506 want_evas_magic_debug="yes"
1507 AC_MSG_CHECKING(whether to check magic for evas object)
1508 AC_ARG_ENABLE(evas-magic-debug,
1509   AC_HELP_STRING(
1510     [--disable-evas-magic-debug],
1511     [disable MAGIC_DEBUG check when people pass in wrong object type. [[default=enabled]]]
1512   ),
1513   [ want_evas_magic_debug="$enableval" ]
1514 )
1515 AC_MSG_RESULT($want_evas_magic_debug)
1516
1517 AM_CONDITIONAL(EVAS_MAGIC_DEBUG, test "x$want_evas_magic_debug" = "xyes")
1518 if test "x$want_evas_magic_debug" = "xyes"; then
1519   AC_DEFINE(EVAS_MAGIC_DEBUG, 1, [complain when people pass in wrong object types etc.])
1520 fi
1521
1522 #####################################################################
1523 ## ARGB engine options
1524
1525 #######################################
1526 ## Nearest sampling scaler
1527 EVAS_CHECK_SCALER([scale-sample], [sampling scaler], [scaler_sample="yes"], [scaler_sample="no"])
1528 ## Smooth super and sub sampling scaler
1529 EVAS_CHECK_SCALER([scale-smooth], [smooth scaler], [scaler_smooth="yes"], [scaler_smooth="no"])
1530
1531 #######################################
1532 ## YUV -> ARGB converter
1533 conv_yuv="no"
1534 conv_yuv="yes"
1535 AC_MSG_CHECKING(whether to build yuv converter code)
1536 AC_ARG_ENABLE(convert-yuv,
1537   AC_HELP_STRING([--enable-convert-yuv], [enable yuv converter code]),
1538   [
1539       if test "x$enableval" = "xyes" ; then
1540         AC_MSG_RESULT(yes)
1541         AC_DEFINE(BUILD_CONVERT_YUV, 1, [YUV Converter Support])
1542         conv_yuv="yes"
1543       else
1544         AC_MSG_RESULT(no)
1545         conv_yuv="no"
1546       fi
1547   ], [
1548       AC_MSG_RESULT($conv_yuv)
1549       if test "x$conv_yuv" = "xyes" ; then
1550         AC_DEFINE(BUILD_CONVERT_YUV, 1, [YUV Converter Support])
1551       fi
1552   ]
1553 )
1554
1555 #####################################################################
1556 ## Output rendering features
1557
1558 #######################################
1559 ## Small dither mask instead of big one (lower quality)
1560 EVAS_CHECK_DITHER([small-dither-mask], [small dither mask], [conv_small_dither="yes"], [conv_small_dither="no"])
1561 ## Alternate Line dither mask instead of big one (lower quality - but fastest)
1562 EVAS_CHECK_DITHER([line-dither-mask], [line dither mask], [conv_line_dither="yes"], [conv_line_dither="no"])
1563 ## No dither mask at all for 16bpp
1564 EVAS_CHECK_DITHER([no-dither-mask], [conversion to 16bpp without dither mask], [conv_no_dither="yes"], [conv_no_dither="no"])
1565
1566 #######################################
1567 ## Convert to 8bpp RGB 332
1568 EVAS_CONVERT_COLOR(8, RGB, 332, [yes])
1569 ## Convert to 8bpp RGB 666
1570 EVAS_CONVERT_COLOR(8, RGB, 666, [yes])
1571 ## Convert to 8bpp RGB 232
1572 EVAS_CONVERT_COLOR(8, RGB, 232, [yes])
1573 ## Convert to 8bpp RGB 222
1574 EVAS_CONVERT_COLOR(8, RGB, 222, [yes])
1575 ## Convert to 8bpp RGB 221
1576 EVAS_CONVERT_COLOR(8, RGB, 221, [yes])
1577 ## Convert to 8bpp RGB 121
1578 EVAS_CONVERT_COLOR(8, RGB, 121, [yes])
1579 ## Convert to 8bpp RGB 111
1580 EVAS_CONVERT_COLOR(8, RGB, 111, [yes])
1581 ## Convert to 16bpp RGB 565
1582 EVAS_CONVERT_COLOR(16, RGB, 565)
1583 ## Convert to 16bpp BGR 565
1584 EVAS_CONVERT_COLOR(16, BGR, 565)
1585 ## Convert to 16bpp RGB 555
1586 EVAS_CONVERT_COLOR(16, RGB, 555)
1587 ## Convert to 16bpp RGB 444
1588 EVAS_CONVERT_COLOR(16, RGB, 444)
1589
1590 #######################################
1591 ## Convert to 16bpp RGB 565 (444 ipaq)
1592 conv_16_rgb_ipq="yes"
1593 AC_MSG_CHECKING(whether to build 16bpp 565 (444 ipaq) converter code)
1594 AC_ARG_ENABLE(convert-16-rgb-ipq,
1595   AC_HELP_STRING([--disable-convert-16-rgb-ipq], [disable 16bpp 565 (444 ipaq) converter code]),
1596   [
1597       if test "x$enableval" = "xyes" ; then
1598         AC_DEFINE(BUILD_CONVERT_16_RGB_454645, 1, [16bpp 565 (444 ipaq) Converter Support])
1599         conv_16_rgb_ipq="yes"
1600       else
1601         conv_16_rgb_ipq="no"
1602       fi
1603   ], [
1604       if test "x$conv_16_rgb_ipq" = "xyes" ; then
1605         AC_DEFINE(BUILD_CONVERT_16_RGB_454645, 1, [16bpp 565 (444 ipaq) Converter Support])
1606       fi
1607   ]
1608 )
1609 AC_MSG_RESULT($conv_16_rgb_ipq)
1610
1611 #######################################
1612 ## Convert to 16bpp RGB with rotation of 0
1613 EVAS_CONVERT_ROT(16, RGB, 0)
1614 ## Convert to 16bpp RGB with rotation of 180
1615 EVAS_CONVERT_ROT(16, RGB, 180)
1616 ## Convert to 16bpp RGB with rotation of 270
1617 EVAS_CONVERT_ROT(16, RGB, 270)
1618 ## Convert to 16bpp RGB with rotation of 90
1619 EVAS_CONVERT_ROT(16, RGB, 90)
1620
1621 #######################################
1622 ## Convert to 24bpp RGB 888
1623 EVAS_CONVERT_COLOR(24, RGB, 888)
1624 ## Convert to 24bpp BGR 888
1625 EVAS_CONVERT_COLOR(24, BGR, 888)
1626 ## Convert to 32bpp RGB 8888
1627 EVAS_CONVERT_COLOR(32, RGB, 8888)
1628 ## Convert to 32bpp RGBX 8888
1629 EVAS_CONVERT_COLOR(32, RGBX, 8888)
1630 ## Convert to 32bpp BGR 8888
1631 EVAS_CONVERT_COLOR(32, BGR, 8888)
1632 ## Convert to 32bpp BGRX 8888
1633 EVAS_CONVERT_COLOR(32, BGRX, 8888)
1634
1635 #######################################
1636 ## Convert to 24bpp RGB 666 (666 ezx)
1637 conv_24_rgb_ezx="yes"
1638 AC_MSG_CHECKING(whether to build 24bpp 666 (666 ezx) converter code)
1639 AC_ARG_ENABLE(convert-24-rgb-ezx,
1640   AC_HELP_STRING([--disable-convert-24-rgb-ezx], [disable 24bpp 666 (666 ezx) converter code]),
1641   [
1642       if test "x$enableval" = "xyes" ; then
1643         AC_DEFINE(BUILD_CONVERT_24_RGB_666, 1, [24bpp 666 (666 ezx) Converter Support])
1644         conv_24_rgb_ezx="yes"
1645       else
1646         conv_24_rgb_ezx="no"
1647       fi
1648   ], [
1649       if test "x$conv_24_rgb_ezx" = "xyes" ; then
1650         AC_DEFINE(BUILD_CONVERT_24_RGB_666, 1, [24bpp 666 (666 ezx) Converter Support])
1651       fi
1652   ]
1653 )
1654 AC_MSG_RESULT($conv_24_rgb_ezx)
1655
1656 #######################################
1657 ## Convert to 32bpp RGB 666 (666 ezx)
1658 conv_32_rgb_ezx="yes"
1659 AC_MSG_CHECKING(whether to build 32bpp 666 (666 ezx) converter code)
1660 AC_ARG_ENABLE(convert-32-rgb-ezx,
1661   AC_HELP_STRING([--disable-convert-32-rgb-ezx], [disable 32bpp 666 (666 ezx) converter code]),
1662   [
1663       if test "x$enableval" = "xyes" ; then
1664         AC_DEFINE(BUILD_CONVERT_32_RGB_666, 1, [32bpp 666 (666 ezx) Converter Support])
1665         conv_32_rgb_ezx="yes"
1666       else
1667         conv_32_rgb_ezx="no"
1668       fi
1669   ], [
1670       if test "x$conv_32_rgb_ezx" = "xyes" ; then
1671         AC_DEFINE(BUILD_CONVERT_32_RGB_666, 1, [32bpp 666 (666 ezx) Converter Support])
1672       fi
1673   ]
1674 )
1675 AC_MSG_RESULT($conv_32_rgb_ezx)
1676
1677 #######################################
1678 ## Convert to 32bpp RGB with rotation of 0
1679 EVAS_CONVERT_ROT(32, RGB, 0)
1680 ## Convert to 32bpp RGB with rotation of 180
1681 EVAS_CONVERT_ROT(32, RGB, 180)
1682 ## Convert to 32bpp RGB with rotation of 270
1683 EVAS_CONVERT_ROT(32, RGB, 270)
1684 ## Convert to 32bpp RGB with rotation of 90
1685 EVAS_CONVERT_ROT(32, RGB, 90)
1686
1687 #######################################
1688 ## Convert to 8bpp grayscale with 256 value, no palette
1689 EVAS_CONVERT_COLOR(8, GRY, 1)
1690 ## Convert to 8bpp grayscale with 16 value, no palette
1691 EVAS_CONVERT_COLOR(8, GRY, 16)
1692
1693 #######################################
1694 ## Convert to 8bpp grayscale, 64-palette
1695 conv_8_grayscale_64="yes"
1696 AC_MSG_CHECKING(whether to build 8bpp grayscale 64-palette converter code)
1697 AC_ARG_ENABLE(convert-8-grayscale-64,
1698   AC_HELP_STRING([--disable-convert-8-grayscale-64], [disable 8bpp grayscale 64-palette converter code]),
1699   [
1700      if test "x$enableval" = "xyes"; then
1701        AC_DEFINE(BUILD_CONVERT_8_GRAYSCALE_64, 1, [8bpp Grayscale 64-palette Converter Support])
1702        conv_8_grayscale_64="yes"
1703      else
1704        conv_8_grayscale_64="no"
1705      fi
1706   ], [
1707      if test "x$conv_8_grayscale_64" = "xyes"; then
1708        AC_DEFINE(BUILD_CONVERT_8_GRAYSCALE_64, 1, [32bpp Grayscale 64-palette Converter Support])
1709      fi
1710   ]
1711 )
1712 AC_MSG_RESULT($conv_8_grayscale_64)
1713
1714 ## valgrind
1715 want_valgrind="no"
1716 have_valgrind="no"
1717
1718 AC_MSG_CHECKING(whether to enable build with valgrind)
1719 AC_ARG_ENABLE(valgrind,
1720   AC_HELP_STRING([--enable-valgrind], [enable valgrind fixes to stop false reports]),
1721   [ want_valgrind=$enableval ]
1722 )
1723 AC_MSG_RESULT($want_valgrind)
1724
1725 if test x$want_valgrind = "xyes"; then
1726   PKG_CHECK_MODULES(VALGRIND, valgrind >= 2.4.0,
1727     [
1728       AC_DEFINE(HAVE_VALGRIND, 1, [Valgrind support])
1729       have_valgrind=yes
1730       requirement_evas="valgrind ${requirement_evas}"
1731     ],
1732     [
1733       if test "x$want_valgrind" = "xyes" -a "x$use_strict" = "xyes" ; then
1734         AC_MSG_ERROR([Valgrind not found (strict dependencies checking)])
1735       fi
1736     ]
1737   )
1738 fi
1739
1740 ## Examples
1741
1742 install_examples="yes"
1743 AC_ARG_ENABLE([install-examples],
1744    AC_HELP_STRING([--disable-install-examples],
1745                   [disable installing examples (compiled or just source).
1746                    @<:@default==enabled@:>@]),
1747    [
1748     if test "x${enableval}" = "xyes" ; then
1749        install_examples="yes"
1750     else
1751        install_examples="no"
1752     fi
1753    ],
1754    [install_examples="yes"])
1755 AM_CONDITIONAL([INSTALL_EXAMPLES], [test "x${install_examples}" = "xyes"])
1756
1757 build_examples="no"
1758 AC_ARG_ENABLE([build-examples],
1759    AC_HELP_STRING([--enable-build-examples],
1760                   [enable building examples (this requires extra denpendencies. if you don't have them installed yet, don't build with this option or it will fail. build again when you have it, overriding the previous installation). @<:@default==disabled@:>@]),
1761    [
1762     if test "x${enableval}" = "xyes" ; then
1763        build_examples="yes"
1764        # put in here the dependencies for Evas' examples. they are
1765        # meant to be 'real world' usage examples, thus one will be
1766        # using higher level libraries on these programs
1767        PKG_CHECK_MODULES([ECORE_EVAS], [ecore-evas ecore], [], [build_examples="no"])
1768        PKG_CHECK_MODULES([EDJE], [edje],
1769         [edje_cc=$($PKG_CONFIG --variable=prefix edje)/bin/edje_cc],
1770         [build_examples="no"])
1771        AC_SUBST(edje_cc)
1772     else
1773        build_examples="no"
1774     fi
1775    ],
1776    [build_examples="no"])
1777 AM_CONDITIONAL([BUILD_EXAMPLES], [test "x${build_examples}" = "xyes"])
1778
1779 ## Unit tests, coverage
1780
1781 EFL_CHECK_TESTS([enable_tests="yes"], [enable_tests="no"])
1782
1783 EFL_CHECK_COVERAGE([${enable_tests}], [enable_coverage="yes"], [enable_coverage="no"])
1784 EVAS_CFLAGS="${EVAS_CFLAGS} ${EFL_COVERAGE_CFLAGS} ${EXOTIC_CFLAGS}"
1785 EVAS_LIBS="${EVAS_LIBS} ${EFL_COVERAGE_LIBS} ${EXOTIC_LIBS}"
1786 if test "x$enable_coverage" = "xyes" ; then
1787    EVAS_CFLAGS="${EVAS_CFLAGS} ${EFL_DEBUG_CFLAGS}"
1788 fi
1789
1790 AC_SUBST(EVAS_CFLAGS)
1791 AC_SUBST(EVAS_LIBS)
1792
1793 #####################################################################
1794 ## Fill in flags
1795
1796 AC_SUBST(altivec_cflags)
1797 AC_SUBST(pthread_cflags)
1798 AC_SUBST(pthread_libs)
1799 AC_SUBST(requirement_evas)
1800
1801
1802 #####################################################################
1803 ## Output
1804
1805 AC_OUTPUT([
1806 Makefile
1807 evas-directfb.pc
1808 evas-fb.pc
1809 evas-opengl-x11.pc
1810 evas-opengl-sdl.pc
1811 evas-opengl-cocoa.pc
1812 evas-software-buffer.pc
1813 evas-software-x11.pc
1814 evas-software-8-x11.pc
1815 evas-software-16-x11.pc
1816 evas-software-gdi.pc
1817 evas-software-ddraw.pc
1818 evas-direct3d.pc
1819 evas-software-16-wince.pc
1820 evas-software-sdl.pc
1821 evas-psl1ght.pc
1822 evas-wayland-shm.pc
1823 evas-wayland-egl.pc
1824 evas.pc
1825 doc/evas.dox
1826 doc/Makefile
1827 doc/Doxyfile
1828 src/Makefile
1829 src/bin/Makefile
1830 src/bin/loaders/Makefile
1831 src/bin/loaders/jpeg/Makefile
1832 src/bin/loaders/png/Makefile
1833 src/bin/loaders/eet/Makefile
1834 src/bin/loaders/tiff/Makefile
1835 src/bin/loaders/xpm/Makefile
1836 src/bin/loaders/bmp/Makefile
1837 src/bin/loaders/ico/Makefile
1838 src/bin/loaders/tga/Makefile
1839 src/bin/loaders/pmaps/Makefile
1840 src/bin/loaders/wbmp/Makefile
1841 src/bin/loaders/psd/Makefile
1842 src/lib/Makefile
1843 src/lib/canvas/Makefile
1844 src/lib/file/Makefile
1845 src/lib/cache/Makefile
1846 src/lib/cache2/Makefile
1847 src/lib/cserve/Makefile
1848 src/lib/cserve2/Makefile
1849 src/lib/engines/Makefile
1850 src/lib/engines/common/Makefile
1851 src/lib/engines/common/evas_op_add/Makefile
1852 src/lib/engines/common/evas_op_blend/Makefile
1853 src/lib/engines/common/evas_op_copy/Makefile
1854 src/lib/engines/common/evas_op_mask/Makefile
1855 src/lib/engines/common/evas_op_mul/Makefile
1856 src/lib/engines/common/evas_op_sub/Makefile
1857 src/lib/engines/common_8/Makefile
1858 src/lib/engines/common_16/Makefile
1859 src/modules/Makefile
1860 src/modules/engines/Makefile
1861 src/modules/engines/software_generic/Makefile
1862 src/modules/engines/software_gdi/Makefile
1863 src/modules/engines/software_ddraw/Makefile
1864 src/modules/engines/direct3d/Makefile
1865 src/modules/engines/software_16_wince/Makefile
1866 src/modules/engines/software_x11/Makefile
1867 src/modules/engines/fb/Makefile
1868 src/modules/engines/buffer/Makefile
1869 src/modules/engines/directfb/Makefile
1870 src/modules/engines/gl_common/Makefile
1871 src/modules/engines/gl_x11/Makefile
1872 src/modules/engines/gl_sdl/Makefile
1873 src/modules/engines/gl_cocoa/Makefile
1874 src/modules/engines/psl1ght/Makefile
1875 src/modules/engines/software_8/Makefile
1876 src/modules/engines/software_8_x11/Makefile
1877 src/modules/engines/software_16/Makefile
1878 src/modules/engines/software_16_x11/Makefile
1879 src/modules/engines/software_16_sdl/Makefile
1880 src/modules/engines/wayland_shm/Makefile
1881 src/modules/engines/wayland_egl/Makefile
1882 src/modules/loaders/Makefile
1883 src/modules/loaders/edb/Makefile
1884 src/modules/loaders/eet/Makefile
1885 src/modules/loaders/gif/Makefile
1886 src/modules/loaders/jpeg/Makefile
1887 src/modules/loaders/png/Makefile
1888 src/modules/loaders/tiff/Makefile
1889 src/modules/loaders/xpm/Makefile
1890 src/modules/loaders/bmp/Makefile
1891 src/modules/loaders/ico/Makefile
1892 src/modules/loaders/tga/Makefile
1893 src/modules/loaders/svg/Makefile
1894 src/modules/loaders/pmaps/Makefile
1895 src/modules/loaders/wbmp/Makefile
1896 src/modules/loaders/psd/Makefile
1897 src/modules/loaders/generic/Makefile
1898 src/modules/savers/Makefile
1899 src/modules/savers/edb/Makefile
1900 src/modules/savers/eet/Makefile
1901 src/modules/savers/jpeg/Makefile
1902 src/modules/savers/png/Makefile
1903 src/modules/savers/tiff/Makefile
1904 src/static_deps/Makefile
1905 src/static_deps/liblinebreak/Makefile
1906 src/lib/include/Makefile
1907 src/examples/Makefile
1908 src/tests/Makefile
1909 data/Makefile
1910 evas.spec
1911 ])
1912
1913 #####################################################################
1914 ## Sanity Checks
1915
1916 if test "x$build_pthreads" = "xno" ; then
1917   if test "x$build_pipe_render" = "xyes" ; then
1918     echo "ERROR: PThreads off, but pipe rendering on. Pipe rendering"
1919     echo "  needs thread support."
1920     exit 1
1921   fi
1922 fi
1923
1924 if test "x${has_pthreads}" = "xno" ; then
1925   if test "x$build_async_preload" = "xyes" ; then
1926     echo "ERROR: PThreads off, but Async Preload on. Async Preload"
1927     echo "  needs thread support."
1928     exit 1
1929   fi
1930 fi
1931
1932 #####################################################################
1933 ## Info
1934
1935 echo
1936 echo
1937 echo
1938 echo "------------------------------------------------------------------------"
1939 echo "$PACKAGE $VERSION"
1940 echo "------------------------------------------------------------------------"
1941 echo
1942 echo "Configuration Options Summary:"
1943 echo
1944 echo "Engines:"
1945 echo "  Software Memory Buffer.....: $have_evas_engine_buffer"
1946 echo "  Software X11...............: $have_evas_engine_software_x11 (Xlib: $have_evas_engine_software_xlib) (XCB: $have_evas_engine_software_xcb)"
1947 echo $ECHO_N "  OpenGL X11.................: $have_evas_engine_gl_x11 (Xlib: $have_evas_engine_gl_xlib) (XCB: $have_evas_engine_gl_xcb) $ECHO_C"
1948 if test "x$have_evas_engine_gl_x11" = "xyes"; then
1949   echo "(GLES: $gl_flavor_gles) (SGX: $gles_variety_sgx) (s3c6410: $gles_variety_s3c6410)"
1950 else
1951   echo
1952 fi
1953 echo "  Software GDI...............: $have_evas_engine_software_gdi"
1954 echo "  Software DirectDraw........: $have_evas_engine_software_ddraw"
1955 echo "  Direct3d...................: $have_evas_engine_direct3d"
1956 echo "  OpenGL SDL.................: $have_evas_engine_gl_sdl $ECHO_C"
1957 if test "x$have_evas_engine_gl_sdl" = "xyes"; then
1958   echo "(GLES: $gl_flavor_gles) (SGX: $gles_variety_sgx) (s3c6410: $gles_variety_s3c6410)"
1959 else
1960   echo
1961 fi
1962 echo "  OpenGL Cocoa...............: $have_evas_engine_gl_cocoa"
1963 echo "  Software Framebuffer.......: $have_evas_engine_fb"
1964 echo "  DirectFB...................: $have_evas_engine_directfb"
1965 echo "  PSL1GHT....................: $have_evas_engine_psl1ght"
1966 echo "  Software 8bit grayscale....: $have_evas_engine_software_8"
1967 # FIXME: kill software 16bit
1968 echo "  Software 16bit ............: $have_evas_engine_software_16"
1969 echo "  Software 16bit X11.........: $have_evas_engine_software_16_x11"
1970 echo "  Software 16bit WinCE.......: $have_evas_engine_software_16_wince"
1971 echo "  Software 16bit SDL.........: $have_evas_engine_software_16_sdl (primitive: $sdl_primitive)"
1972 echo "  Wayland Shm................: $have_evas_engine_wayland_shm"
1973 echo "  Wayland Egl................: $have_evas_engine_wayland_egl"
1974 echo
1975 echo "Image Loaders:"
1976 echo "  BMP.....................: $have_evas_image_loader_bmp"
1977 echo "  EDB.....................: $have_evas_image_loader_edb"
1978 echo "  EET.....................: $have_evas_image_loader_eet"
1979 echo "  GENERIC.................: $have_evas_image_loader_generic"
1980 echo "  GIF.....................: $have_evas_image_loader_gif"
1981 echo "  ICO.....................: $have_evas_image_loader_ico"
1982 echo "  JPEG....................: $have_evas_image_loader_jpeg (region: $have_jpeg_region)"
1983 echo "  PMAPS...................: $have_evas_image_loader_pmaps"
1984 echo "  PNG.....................: $have_evas_image_loader_png"
1985 echo "  PSD.....................: $have_evas_image_loader_psd"
1986 echo "  SVG.....................: $have_evas_image_loader_svg"
1987 echo "  TGA.....................: $have_evas_image_loader_tga"
1988 echo "  TIFF....................: $have_evas_image_loader_tiff"
1989 echo "  WBMP....................: $have_evas_image_loader_wbmp"
1990 echo "  XPM.....................: $have_evas_image_loader_xpm"
1991 echo
1992 echo "Font Sourcing Systems:"
1993 echo "  EET.....................: $have_evas_font_loader_eet"
1994 echo
1995 echo "Font Searching Systems:"
1996 echo "  Fontconfig..............: $have_fontconfig"
1997 echo
1998 echo "Font Rendering Helpers:"
1999 echo "  Fribidi.................: $have_fribidi"
2000 echo "  Harfbuzz................: $have_harfbuzz"
2001 echo "  liblinebreak............: $have_linebreak"
2002 # FIXME: add non freetype2 font engine support
2003 # FIXME: make freetype2 optional
2004 echo
2005 echo "CPU Specific Extensions:"
2006 echo "  Fallback C Code.........: $build_cpu_c"
2007 echo "  MMX.....................: $build_cpu_mmx"
2008 echo "  SSE.....................: $build_cpu_sse"
2009 echo "  SSE3....................: $build_cpu_sse3"
2010 echo "  ALTIVEC.................: $build_cpu_altivec"
2011 echo "  NEON....................: $build_cpu_neon"
2012 echo "  Thread Support..........: $build_pthreads"
2013 echo
2014 echo "Features:"
2015 echo "  MAGIC_DEBUG.............: $want_evas_magic_debug"
2016 echo "  Cache Server............: $want_evas_cserve"
2017 echo "  Cache Server 2..........: $want_evas_cserve2"
2018 echo
2019 dnl
2020 dnl ... DISABLED! some testing has shown that this seems to have some
2021 dnl nasty bugs on both x86 and arm (tegra2 dual core tested), so just
2022 dnl disabling this for now until it can be fixed
2023 dnl 
2024 echo "  Threaded Pipe Rendering.: $build_pipe_render"
2025 echo "  Async Events............: $build_async_events"
2026 echo "  Async Image Preload.....: $build_async_preload"
2027 echo
2028 echo "  Pixman..................: $have_pixman"
2029 echo "  Pixman Fonts............: $have_pixman_font"
2030 echo "  Pixman Rects............: $have_pixman_rect"
2031 echo "  Pixman Lines............: $have_pixman_line"
2032 echo "  Pixman Polygons.........: $have_pixman_poly"
2033 echo "  Pixman Images...........: $have_pixman_image"
2034 echo "  Pixman Image ScaleSample: $have_pixman_image_scale_sample"
2035 echo 
2036 echo "  Tiled 32BPP rotate......: $have_tile_rotate"
2037 echo
2038 echo "ARGB Software Engine Options:"
2039 echo "  Sampling Scaler.........: $scaler_sample"
2040 echo "  Smooth Scaler...........: $scaler_smooth"
2041 # FIXME: add an mmx scaler routine
2042 echo "  YUV Converter...........: $conv_yuv"
2043 # FIXME: add more YUV format and colorvariant support
2044 echo
2045 echo "ARGB Conversion Options:"
2046 echo "  Smaller Dither Mask.....: $conv_small_dither"
2047 echo "  Line Dither Mask........: $conv_line_dither"
2048 echo "  No Dither Mask for 16bpp: $conv_no_dither"
2049 echo "  8bpp RGB 332............: $conv_8_rgb_332"
2050 echo "  8bpp RGB 666............: $conv_8_rgb_666"
2051 echo "  8bpp RGB 232............: $conv_8_rgb_232"
2052 echo "  8bpp RGB 222............: $conv_8_rgb_222"
2053 echo "  8bpp RGB 221............: $conv_8_rgb_221"
2054 echo "  8bpp RGB 121............: $conv_8_rgb_121"
2055 echo "  8bpp RGB 111............: $conv_8_rgb_111"
2056 echo "  8bpp Grayscale (256)....: $conv_8_gry_1"
2057 echo "  8bpp Grayscale (16).....: $conv_8_gry_16"
2058 echo "  8bpp Grayscale 64-pal...: $conv_8_grayscale_64"
2059 # FIXME: add grayscale and B&W support to standard x converters
2060 echo "  16bpp RGB 565...........: $conv_16_rgb_565"
2061 echo "  16bpp BGR 565...........: $conv_16_bgr_565"
2062 echo "  16bpp RGB 555...........: $conv_16_rgb_555"
2063 echo "  16bpp RGB 444...........: $conv_16_rgb_444"
2064 echo "  16bpp RGB 565 (444 ipaq): $conv_16_rgb_ipq"
2065 # FIXME: add 555 (444 ipaq) support
2066 # FIXME: add 30bpp support
2067 # FIXME: add palletted support (ugh!)
2068 # FIXME: add 8bpp and below rotation
2069 echo "  16bpp Rotation 0........: $conv_16_rgb_rot_0"
2070 echo "  16bpp Rotation 90.......: $conv_16_rgb_rot_90"
2071 echo "  16bpp Rotation 180......: $conv_16_rgb_rot_180"
2072 echo "  16bpp Rotation 270......: $conv_16_rgb_rot_270"
2073 echo "  24bpp RGB 888...........: $conv_24_rgb_888"
2074 echo "  24bpp BGR 888...........: $conv_24_bgr_888"
2075 echo "  24bpp RGB 666 (666 ezx).: $conv_24_rgb_ezx"
2076 # FIXME: add 24bpp rotation
2077 echo "  32bpp RGB 8888..........: $conv_32_rgb_8888"
2078 echo "  32bpp RGBX 8888.........: $conv_32_rgbx_8888"
2079 echo "  32bpp BGR 8888..........: $conv_32_bgr_8888"
2080 echo "  32bpp BGRX 8888.........: $conv_32_bgrx_8888"
2081 echo "  32bpp RGB 666 (666 ezx).: $conv_32_rgb_ezx"
2082 echo "  32bpp Rotation 0........: $conv_32_rgb_rot_0"
2083 echo "  32bpp Rotation 90.......: $conv_32_rgb_rot_90"
2084 echo "  32bpp Rotation 180......: $conv_32_rgb_rot_180"
2085 echo "  32bpp Rotation 270......: $conv_32_rgb_rot_270"
2086 echo
2087 echo "Documentation.............: ${build_doc}"
2088 echo "Examples..................: install:${install_examples} build:${build_examples}"
2089 if test "x${enable_tests}" = "xyes" ; then
2090    echo "Tests.....................: ${enable_tests} (make check)"
2091 else
2092    echo "Tests.....................: ${enable_tests}"
2093 fi
2094 if test "x${enable_coverage}" = "xyes" ; then
2095    echo "Coverage..................: ${enable_coverage} (make coverage)"
2096 else
2097    echo "Coverage..................: ${enable_coverage}"
2098 fi
2099 echo
2100 echo "Compilation............: make (or gmake)"
2101 echo "  CPPFLAGS.............: $CPPFLAGS"
2102 echo "  CFLAGS...............: $CFLAGS"
2103 echo "  CXXFLAGS.............: $CXXFLAGS"
2104 echo "  LDFLAGS..............: $LDFLAGS"
2105 echo
2106 echo "Installation...........: make install (as root if needed, with 'su' or 'sudo')"
2107 echo "  prefix...............: $prefix"
2108 echo
2109 if test "x${have_static_module}" = "xyes" ; then
2110 echo -e "\0033\01331;31mWarning\0033\01331;0m: You are trying to link statically one or more modules to Evas."
2111 echo "         You must know what you are doing, or else you will have a lot of"
2112 echo "         problems. And Kenny will be killed."
2113 echo "         Think about that."
2114 echo
2115 fi