packaging: Update dependencies and bump version to 0.9.23
[profile/ivi/ico-uxf-weston-plugin.git] / configure.ac
index db1d5d9..a246aec 100644 (file)
@@ -1,6 +1,6 @@
 AC_PREREQ([2.68])
 AC_INIT([ico-uxf-weston-plugin],
-        [0.9.06],
+        [0.9.21],
         [https://BUG-REPORT-ADDRESS])
 
 AC_CONFIG_HEADERS([config.h])
@@ -30,7 +30,10 @@ AC_CHECK_HEADERS([execinfo.h])
 
 AC_CHECK_FUNCS([mkostemp strchrnul])
 
-PKG_CHECK_MODULES([PLUGIN], [weston >= 1.1.1 pixman-1 xkbcommon])
+PKG_CHECK_MODULES([PLUGIN], [weston >= 1.4 pixman-1])
+PKG_CHECK_MODULES([EGL], [egl])
+
+CFLAGS="$CFLAGS $EGL_CFLAGS"
 
 if test "x$GCC" = "xyes"; then
        my_common_gcc_flags="-Wall -Wextra -Wno-unused-parameter \
@@ -39,6 +42,7 @@ if test "x$GCC" = "xyes"; then
                -Wstrict-prototypes -Wmissing-prototypes"
        GCC_CXXFLAGS="$my_common_gcc_flags"
 fi
+AC_SUBST(CFLAGS)
 AC_SUBST(GCC_CFLAGS)
 AC_SUBST(GCC_CXXFLAGS)
 
@@ -46,5 +50,6 @@ WAYLAND_SCANNER_RULES(['$(top_srcdir)/protocol'])
 
 AC_CONFIG_FILES([Makefile
                 src/Makefile
+                tools/Makefile
                 tests/Makefile])
 AC_OUTPUT