~fginther/geis/geis-2.2.9.1-precise

« back to all changes in this revision

Viewing changes to tools/geis-server/Makefile.in

  • Committer: Francis Ginther
  • Date: 2012-08-16 13:43:15 UTC
  • mfrom: (49.1.37)
  • Revision ID: francis.ginther@canonical.com-20120816134315-ex9m75nqcv0uryim
* New upstream release.
  - fixes pinch radius and drag delta calculations (lp: #985916)
    (lp: #986215)
  - changes type of geisSubscriptionFlags (lp: #813819)
  - changes direct devices to use window coordinates (lp: #984069)
  - reports device axis extents, if available (lp: #987539)
  - removes XCB back end
  - removes overlapping events when a gesture is accepted (lp: #1001365)
  - avoids trying to start a DBus session if there is none already
    (lp: #997630)
  - detect added devices properly (LP: #1009270)
  - fix crash when accepting a gesture (LP: #1015775)
  - fix result value of geis_subscription_deactivate() (LP: #1021448)
  - upstream project renamed to just 'geis'

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
#
19
19
# @file tools/geis-server
20
 
# @brief automake recipe for the uTouch GEIS v2.0 test server
 
20
# @brief automake recipe for the GEIS v2.0 test server
21
21
#
22
22
# Copyright 2011 Canonical, Ltd.
23
23
#
24
 
# This file is part of the utouch-geis library. This library is free software;
 
24
# This file is part of the geis library. This library is free software;
25
25
# you can redistribute it and/or modify it under the terms of the GNU Lesser
26
26
# General Public License as published by the Free Software Foundation; either
27
27
# version 3 of the License, or (at your option) any later version.
59
59
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
60
60
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
61
61
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_enable_xi2.m4 \
62
 
        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
63
 
        $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
64
 
        $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/pkg.m4 \
65
 
        $(top_srcdir)/m4/xorg-gtest.m4 $(top_srcdir)/m4/xorg-macros.m4 \
66
 
        $(top_srcdir)/configure.ac
 
62
        $(top_srcdir)/m4/gtest.m4 $(top_srcdir)/m4/libtool.m4 \
 
63
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
64
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
65
        $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/xorg-gtest.m4 \
 
66
        $(top_srcdir)/m4/xorg-macros.m4 $(top_srcdir)/configure.ac
67
67
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
68
68
        $(ACLOCAL_M4)
69
69
mkinstalldirs = $(install_sh) -d
74
74
PROGRAMS = $(bin_PROGRAMS)
75
75
am_geis_server_OBJECTS = geis_server-geis-server.$(OBJEXT)
76
76
geis_server_OBJECTS = $(am_geis_server_OBJECTS)
77
 
geis_server_DEPENDENCIES =  \
78
 
        $(top_builddir)/libutouch-geis/libutouch-geis.la
 
77
geis_server_DEPENDENCIES = $(top_builddir)/libgeis/libgeis.la
79
78
AM_V_lt = $(am__v_lt_@AM_V@)
80
79
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
81
80
am__v_lt_0 = --silent
152
151
GRAIL_LIBS = @GRAIL_LIBS@
153
152
GREP = @GREP@
154
153
GTEST_CPPFLAGS = @GTEST_CPPFLAGS@
 
154
GTEST_LIBS = @GTEST_LIBS@
155
155
GTEST_SOURCE = @GTEST_SOURCE@
156
156
INSTALL = @INSTALL@
157
157
INSTALL_DATA = @INSTALL_DATA@
200
200
STRICT_CXXFLAGS = @STRICT_CXXFLAGS@
201
201
STRIP = @STRIP@
202
202
VERSION = @VERSION@
203
 
X11XCB_CFLAGS = @X11XCB_CFLAGS@
204
 
X11XCB_LIBS = @X11XCB_LIBS@
205
203
X11_CFLAGS = @X11_CFLAGS@
206
204
X11_LIBS = @X11_LIBS@
207
 
XCBINCLUDEDIR = @XCBINCLUDEDIR@
208
 
XCBPROTO_XCBINCLUDEDIR = @XCBPROTO_XCBINCLUDEDIR@
209
 
XCBPROTO_XCBPYTHONDIR = @XCBPROTO_XCBPYTHONDIR@
210
205
XCB_CFLAGS = @XCB_CFLAGS@
211
206
XCB_LIBS = @XCB_LIBS@
212
 
XCB_PROTO_CFLAGS = @XCB_PROTO_CFLAGS@
213
 
XCB_PROTO_LIBS = @XCB_PROTO_LIBS@
214
207
XI2_CFLAGS = @XI2_CFLAGS@
215
208
XI2_LIBS = @XI2_LIBS@
216
209
XORG_CFLAGS = @XORG_CFLAGS@
281
274
geis_server_CPPFLAGS = \
282
275
        -I$(top_srcdir) \
283
276
        -I$(top_srcdir)/include \
284
 
        -I$(top_srcdir)/libutouch-geis 
 
277
        -I$(top_srcdir)/libgeis 
285
278
 
286
279
geis_server_LDADD = \
287
 
        $(top_builddir)/libutouch-geis/libutouch-geis.la
 
280
        $(top_builddir)/libgeis/libgeis.la
288
281
 
289
282
all: all-am
290
283