From d5e1a6bb292f2baf649241a3300cc2aed9f2bac2 Mon Sep 17 00:00:00 2001 From: Gwanglim Lee Date: Wed, 25 Oct 2017 11:54:32 +0900 Subject: [PATCH] configure.ac: added missing wayland protocols version Change-Id: I48ab5c1fac884bbd583e634cc506d339461fac9c --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index a91bf1b..282db8c 100644 --- a/configure.ac +++ b/configure.ac @@ -6,6 +6,11 @@ m4_define([wayland_extension_micro_version], [0]) m4_define([wayland_extension_version], [wayland_extension_major_version.wayland_extension_minor_version.wayland_extension_micro_version]) +m4_define([wayland_protocols_major_version], [1]) +m4_define([wayland_protocols_minor_version], [11]) +m4_define([wayland_protocols_version], + [wayland_protocols_major_version.wayland_protocols_minor_version]) + AC_INIT([wayland-extension], [wayland_extension_version], [https://bugs.tizen.org/jira], @@ -15,6 +20,7 @@ AC_SUBST([WAYLAND_EXTENSION_VERSION_MAJOR], [wayland_extension_major_version]) AC_SUBST([WAYLAND_EXTENSION_VERSION_MINOR], [wayland_extension_minor_version]) AC_SUBST([WAYLAND_EXTENSION_VERSION_MICRO], [wayland_extension_micro_version]) AC_SUBST([WAYLAND_EXTENSION_VERSION], [wayland_extension_version]) +AC_SUBST([WAYLAND_PROTOCOLS_VERSION], [wayland_protocols_version]) AC_CONFIG_HEADERS([config.h]) #AC_CONFIG_MACRO_DIR([m4]) -- 2.34.1