~fginther/geis/geis-2.2.9.1-precise

« back to all changes in this revision

Viewing changes to m4/gtest.m4

  • 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:
 
1
# serial 1
 
2
 
 
3
# Copyright (C) 2012 Canonical, Ltd.
 
4
#
 
5
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
6
# of this software and associated documentation files (the "Software"), to deal
 
7
# in the Software without restriction, including without limitation the rights
 
8
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
9
# copies of the Software, and to permit persons to whom the Software is
 
10
# furnished to do so, subject to the following conditions:
 
11
#
 
12
# The above copyright notice and this permission notice (including the next
 
13
# paragraph) shall be included in all copies or substantial portions of the
 
14
# Software.
 
15
#
 
16
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
19
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
20
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
21
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
22
# SOFTWARE.
 
23
 
 
24
# Checks whether the gtest source is available on the system. Allows for
 
25
# adjusting the include and source path. Sets have_gtest=yes if the source is
 
26
# present. Sets GTEST_CPPFLAGS and GTEST_SOURCE to the preprocessor flags and
 
27
# source location respectively.
 
28
AC_DEFUN([CHECK_GTEST],
 
29
[
 
30
  AC_ARG_WITH([gtest-include-path],
 
31
              [AS_HELP_STRING([--with-gtest-include-path],
 
32
                              [location of the Google test headers])],
 
33
              [GTEST_CPPFLAGS="-I$withval"])
 
34
 
 
35
  AC_ARG_WITH([gtest-source-path],
 
36
              [AS_HELP_STRING([--with-gtest-source-path],
 
37
                              [location of the Google test sources, defaults to /usr/src/gtest])],
 
38
              [GTEST_SOURCE="$withval"],
 
39
              [GTEST_SOURCE="/usr/src/gtest"])
 
40
 
 
41
  GTEST_CPPFLAGS="$GTEST_CPPFLAGS -I$GTEST_SOURCE"
 
42
 
 
43
  AC_CHECK_FILES([$GTEST_SOURCE/src/gtest-all.cc]
 
44
                 [$GTEST_SOURCE/src/gtest_main.cc],
 
45
                 [have_gtest=yes],
 
46
                 [have_gtest=no])
 
47
 
 
48
  AS_IF([test "x$have_gtest" = xyes],
 
49
        [GTEST_LIBS=-lpthread
 
50
         AC_SUBST(GTEST_CPPFLAGS)
 
51
         AC_SUBST(GTEST_SOURCE)
 
52
         AC_SUBST(GTEST_LIBS)])
 
53
]) # CHECK_GTEST