1 AC_INIT([libeflvala], [0.1.0.0], [mlauer@vanille-media.de], [libeflvala])
2 AC_CONFIG_SRCDIR([Makefile.am])
3 AC_CONFIG_HEADERS(config.h)
4 AM_INIT_AUTOMAKE([dist-bzip2])
5 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
12 AC_PATH_PROG(VALAC, valac, valac)
27 DBUS_GLIB_REQUIRED=0.74
29 PKG_CHECK_MODULES(VALA,
30 vala-1.0 >= $VALA_REQUIRED)
32 PKG_CHECK_MODULES(DEPS,
33 dbus-1 >= $DBUS_REQUIRED
34 dbus-glib-1 >= $DBUS_GLIB_REQUIRED
35 eina-0 >= $EINA_REQUIRED
36 evas >= $EVAS_REQUIRED
37 ecore >= $ECORE_REQUIRED
38 edje >= $EDJE_REQUIRED
39 elementary >= $ELM_REQUIRED
40 glib-2.0 >= $GLIB_REQUIRED
41 gobject-2.0 >= $GLIB_REQUIRED)
46 [ --with-edje-cc=PATH specify a specific path to edje_cc],
50 echo " Enlightenment edje_cc explicitly set to "$edje_cc;
52 edje_cc=$(pkg-config --variable=prefix edje)/bin/edje_cc
57 # shall we compile the library? [default=yes]
58 AC_ARG_ENABLE(library, [ --disable-library skip building the eflvala library [[default=no]]])
59 AM_CONDITIONAL(MAKE_LIBRARY, test x$enable_library != xno)
60 AC_MSG_CHECKING([whether to compile the eflvala library])
61 if test "$enable_library" != no; then
67 # shall we compile the examples? [default=yes]
68 AC_ARG_ENABLE(examples, [ --disable-examples skip building the examples [[default=no]]])
69 AM_CONDITIONAL(MAKE_EXAMPLES, test x$enable_examples != xno)
70 AC_MSG_CHECKING([whether to compile the example apps])
71 if test "$enable_examples" != no; then
87 examples/eina/Makefile
88 examples/ecore/Makefile
89 examples/ecore-signals/Makefile
90 examples/ecore-glib/Makefile
91 examples/edje/Makefile
92 examples/elementary/Makefile
93 examples/library/Makefile
94 examples/library/application/Makefile
95 examples/library/dialer/Makefile
96 examples/library/viewstates/Makefile