Add a public header for the version number

This adds a public header so that applications can get the Wayland
version number at compile time. This can be used to make applications
that support compiling against multiple versions of Wayland.

There is a separate installed header called cogl-version.h which gets
included by both wayland-client.h and wayland-server.h

The canonical place for the version number is the configure.ac script
which splits it into three separate m4 defines for the major, minor
and micro version. These are copied into the generated
wayland-version.h header using AC_SUBST. There is also a string form
of the complete version number.

The version number is now also automatically copied into the two .pc
files.

Because the major, minor and micro parts are required it is no longer
possible to leave the version number as 'master' when building from
git. Most projects seem to immediately bump the git repo to a fake
version number (usually odd) after making a release so that there is
always a relative number that can be used for comparison. This patch
sets the git version to 0.99.0 under the assumption that the next
release will be 1.0.0.
This commit is contained in:
Neil Roberts 2012-04-11 16:59:05 +01:00 committed by Kristian Høgsberg
parent 8e5866a54d
commit 18a770c80d
8 changed files with 54 additions and 4 deletions

View file

@ -1,10 +1,22 @@
AC_PREREQ([2.64])
m4_define([wayland_major_version], [0])
m4_define([wayland_minor_version], [89])
m4_define([wayland_micro_version], [0])
m4_define([wayland_version],
[wayland_major_version.wayland_minor_version.wayland_micro_version])
AC_INIT([wayland],
[master],
[wayland_version],
[https://bugs.freedesktop.org/enter_bug.cgi?product=wayland],
[wayland],
[http://wayland.freedesktop.org/])
AC_SUBST([WAYLAND_VERSION_MAJOR], [wayland_major_version])
AC_SUBST([WAYLAND_VERSION_MINOR], [wayland_minor_version])
AC_SUBST([WAYLAND_VERSION_MICRO], [wayland_micro_version])
AC_SUBST([WAYLAND_VERSION], [wayland_version])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
@ -69,6 +81,7 @@ AC_CONFIG_FILES([Makefile
src/Makefile
src/wayland-server.pc
src/wayland-client.pc
src/wayland-version.h
protocol/Makefile
tests/Makefile])
AC_OUTPUT

1
src/.gitignore vendored
View file

@ -2,3 +2,4 @@ wayland-scanner
wayland-client-protocol.h
wayland-protocol.c
wayland-server-protocol.h
/wayland-version.h

View file

@ -7,7 +7,8 @@ include_HEADERS = \
wayland-server.h \
wayland-client-protocol.h \
wayland-client.h \
wayland-egl.h
wayland-egl.h \
wayland-version.h
libwayland_util_la_SOURCES = \
connection.c \
@ -61,3 +62,5 @@ BUILT_SOURCES = \
wayland-protocol.c
CLEANFILES = $(BUILT_SOURCES)
DISTCLEANFILES = wayland-version.h
EXTRA_DIST = wayland-version.h.in

View file

@ -24,6 +24,7 @@
#define _WAYLAND_CLIENT_H
#include "wayland-util.h"
#include "wayland-version.h"
#ifdef __cplusplus
extern "C" {

View file

@ -5,6 +5,6 @@ includedir=${prefix}/include
Name: Wayland Client
Description: Wayland client side library
Version: 0.1
Version: @WAYLAND_VERSION@
Cflags: -I${includedir}
Libs: -L${libdir} -lwayland-client

View file

@ -30,6 +30,7 @@ extern "C" {
#include <sys/types.h>
#include <stdint.h>
#include "wayland-util.h"
#include "wayland-version.h"
enum {
WL_EVENT_READABLE = 0x01,

View file

@ -5,6 +5,6 @@ includedir=${prefix}/include
Name: Wayland Server
Description: Server side implementation of the Wayland protocol
Version: 0.1
Version: @WAYLAND_VERSION@
Cflags: -I${includedir}
Libs: -L${libdir} -lwayland-server

31
src/wayland-version.h.in Normal file
View file

@ -0,0 +1,31 @@
/*
* Copyright © 2012 Intel Corporation
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that copyright
* notice and this permission notice appear in supporting documentation, and
* that the name of the copyright holders not be used in advertising or
* publicity pertaining to distribution of the software without specific,
* written prior permission. The copyright holders make no representations
* about the suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
#ifndef WAYLAND_VERSION_H
#define WAYLAND_VERSION_H
#define WAYLAND_VERSION_MAJOR @WAYLAND_VERSION_MAJOR@
#define WAYLAND_VERSION_MINOR @WAYLAND_VERSION_MINOR@
#define WAYLAND_VERSION_MICRO @WAYLAND_VERSION_MICRO@
#define WAYLAND_VERSION "@WAYLAND_VERSION@"
#endif