Bumped package version to 1.0.6.
[profile/ivi/wayland.git] / configure.ac
index a451948..2d9ee44 100644 (file)
@@ -2,13 +2,13 @@ AC_PREREQ([2.64])
 
 m4_define([wayland_major_version], [1])
 m4_define([wayland_minor_version], [0])
-m4_define([wayland_micro_version], [0])
+m4_define([wayland_micro_version], [6])
 m4_define([wayland_version],
           [wayland_major_version.wayland_minor_version.wayland_micro_version])
 
 AC_INIT([wayland],
         [wayland_version],
-        [https://bugs.freedesktop.org/enter_bug.cgi?product=wayland],
+        [https://bugs.freedesktop.org/enter_bug.cgi?product=Wayland&component=wayland&version=wayland_version],
         [wayland],
         [http://wayland.freedesktop.org/])
 
@@ -76,6 +76,20 @@ fi
 AC_PATH_PROG(XSLTPROC, xsltproc)
 AM_CONDITIONAL([HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"])
 
+AC_MSG_CHECKING([for docbook manpages stylesheet])
+MANPAGES_STYLESHEET=http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
+AC_PATH_PROGS_FEATURE_CHECK([XSLTPROC_TMP], [xsltproc],
+                           AS_IF([`"$ac_path_XSLTPROC_TMP" --nonet "$MANPAGES_STYLESHEET" > /dev/null 2>&1`],
+                                 [HAVE_MANPAGES_STYLESHEET=yes]))
+if test "x$HAVE_MANPAGES_STYLESHEET" = "xyes"; then
+       AM_CONDITIONAL([HAVE_MANPAGES_STYLESHEET], true)
+       AC_SUBST(MANPAGES_STYLESHEET)
+       AC_MSG_RESULT([yes])
+else
+       AM_CONDITIONAL([HAVE_MANPAGES_STYLESHEET], false)
+       AC_MSG_RESULT([no])
+fi
+
 AM_CONDITIONAL(BUILD_DOCS, [test x$enable_documentation = xyes])
 if test "x$enable_documentation" = "xyes"; then
        AC_PATH_PROG(DOXYGEN, doxygen)
@@ -116,5 +130,6 @@ AC_CONFIG_FILES([Makefile
                 src/wayland-server.pc
                 src/wayland-client.pc
                 src/wayland-version.h
+                protocol/Makefile
                 tests/Makefile])
 AC_OUTPUT