~ubuntu-branches/ubuntu/trusty/wayland/trusty

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Hector Oron, Timo Aaltonen, Hector Oron
  • Date: 2013-10-11 11:23:38 UTC
  • mfrom: (1.1.15) (0.4.2 sid)
  • Revision ID: package-import@ubuntu.com-20131011112338-2jg0z6ncpm9qnots
Tags: 1.3.0-1
[ Timo Aaltonen ]
* control: Bump the libwayland0 C/R to (<< 1.1.0) so that it covers
  the ubuntu version too, and add it to -cursor.

[ Hector Oron ]
* New upstream stable release (1.3.0).
* Add myself to Uploaders.
* Switch to Debian source format 3.0 quilt.
* d/libwayland-dev.install:
  - install wayland documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ([2.64])
2
2
 
3
3
m4_define([wayland_major_version], [1])
4
 
m4_define([wayland_minor_version], [1])
 
4
m4_define([wayland_minor_version], [3])
5
5
m4_define([wayland_micro_version], [0])
6
6
m4_define([wayland_version],
7
7
          [wayland_major_version.wayland_minor_version.wayland_micro_version])
41
41
 
42
42
AC_CHECK_FUNCS([accept4 mkostemp])
43
43
 
 
44
AC_CHECK_DECL(SFD_CLOEXEC,[],
 
45
              [AC_MSG_ERROR("SFD_CLOEXEC is needed to compile wayland")],
 
46
              [[#include <sys/signalfd.h>]])
 
47
AC_CHECK_DECL(TFD_CLOEXEC,[],
 
48
              [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile wayland")],
 
49
              [[#include <sys/timerfd.h>]])
 
50
AC_CHECK_DECL(CLOCK_MONOTONIC,[],
 
51
              [AC_MSG_ERROR("CLOCK_MONOTONIC is needed to compile wayland")],
 
52
              [[#include <time.h>]])
 
53
AC_CHECK_HEADERS([execinfo.h])
 
54
 
44
55
AC_ARG_ENABLE([scanner],
45
56
              [AC_HELP_STRING([--disable-scanner],
46
57
                              [Disable compilation of wayland-scanner])],
116
127
AM_CONDITIONAL([HAVE_PUBLICAN], [test "x$PUBLICAN" != "x"])
117
128
 
118
129
AC_CONFIG_FILES([Makefile
119
 
                 wayland-scanner.m4
120
130
                 cursor/Makefile
121
131
                 cursor/wayland-cursor.pc
122
132
                 cursor/wayland-cursor-uninstalled.pc
127
137
                 src/Makefile
128
138
                 src/wayland-server-uninstalled.pc
129
139
                 src/wayland-client-uninstalled.pc
 
140
                 src/wayland-scanner-uninstalled.pc
130
141
                 src/wayland-server.pc
131
142
                 src/wayland-client.pc
 
143
                 src/wayland-scanner.pc
132
144
                 src/wayland-version.h
133
145
                 protocol/Makefile
134
146
                 tests/Makefile])