1 AC_INIT([libeflvala], [0.0.2.0], [mlauer@vanille-media.de], [libeflvala])
2 AC_CONFIG_SRCDIR([Makefile.am])
3 AC_CONFIG_HEADERS(config.h)
4 AM_INIT_AUTOMAKE([dist-bzip2])
11 AC_PATH_PROG(VALAC, valac, valac)
25 DBUS_GLIB_REQUIRED=0.74
27 PKG_CHECK_MODULES(VALA,
28 vala-1.0 >= $VALA_REQUIRED)
30 PKG_CHECK_MODULES(DEPS,
31 dbus-1 >= $DBUS_REQUIRED
32 dbus-glib-1 >= $DBUS_GLIB_REQUIRED
33 eina-0 >= $EINA_REQUIRED
34 evas >= $EVAS_REQUIRED
35 ecore >= $ECORE_REQUIRED
36 elementary >= $ELM_REQUIRED
37 glib-2.0 >= $GLIB_REQUIRED
38 gobject-2.0 >= $GLIB_REQUIRED)
42 PKG_CHECK_MODULES(THREAD,
43 gthread-2.0 >= $GLIB_REQUIRED)
44 AC_SUBST(THREAD_CFLAGS)
48 [ --with-edje-cc=PATH specify a specific path to edje_cc],
52 echo " Enlightenment edje_cc explicitly set to "$edje_cc;
54 edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc
59 # shall we compile the library? [default=yes]
60 AC_ARG_ENABLE(library, [ --disable-library skip building the eflvala library [[default=no]]])
61 AM_CONDITIONAL(MAKE_LIBRARY, test x$enable_library != xno)
62 AC_MSG_CHECKING([whether to compile the eflvala library])
63 if test "$enable_library" != no; then
69 # shall we compile the examples? [default=yes]
70 AC_ARG_ENABLE(examples, [ --disable-examples skip building the examples [[default=no]]])
71 AM_CONDITIONAL(MAKE_EXAMPLES, test x$enable_examples != xno)
72 AC_MSG_CHECKING([whether to compile the example apps])
73 if test "$enable_examples" != no; then
89 examples/eina/Makefile
90 examples/ecore/Makefile
91 examples/ecore-signals/Makefile
92 examples/edje/Makefile
93 examples/elementary/Makefile
94 examples/library/Makefile
95 examples/library/mainloops/Makefile
96 examples/library/viewstates/Makefile