~phablet-team/urfkill/monitor-script

« back to all changes in this revision

Viewing changes to .pc/use-glib-gettext.patch/configure.ac

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2014-10-07 23:53:07 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20141007235307-5tuskrywdzi7cq8l
Tags: 0.6.0~20141007.235123.f908aff.1-0ubuntu1
* New release snapshot:
  - Asynchronous support for rfkill operations. (LP: #1321627, #1339794)
  - Improvements to state persistence. (LP: #1354716)
  - Support for devices driven by libhybris rather than rfkill.
* debian/patches/ignore_input_monitor_startup.patch: dropped, included
  upstream.
* debian/control:
  - bump Build-Depends on libglib2.0-dev to >= 2.36 for GTask.
  - add a Build-Depends on libhybris-dev for hybris-driven devices support.
  - bump Standards-Version to 3.9.5.
* debian/scripts/enumerate: handle the new hybris device type.
* debian/rules: remove SysV init startup links.

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
fi
143
143
AC_SUBST(WARNINGFLAGS_C)
144
144
 
145
 
PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.30.1])
 
145
PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.36])
146
146
PKG_CHECK_MODULES(GIO, [gio-unix-2.0 >= 2.30.1])
147
147
PKG_CHECK_MODULES(LIBUDEV, [libudev >= 148])
 
148
PKG_CHECK_MODULES(HYBRIS_WIFI, [libwifi >= 0.1.0], has_hybris_wifi=yes, has_hybris_wifi=no)
 
149
PKG_CHECK_MODULES(HYBRIS_PROPS, [libandroid-properties >= 0.1.0], has_hybris_props=yes, has_hybris_props=no)
 
150
if test x$has_hybris_wifi = xyes -a x$has_hybris_props = xyes; then
 
151
        AC_DEFINE(HAS_HYBRIS, 1, [if we have Hybris support])
 
152
fi
 
153
AM_CONDITIONAL(WITH_HYBRIS, test "$has_hybris_wifi" = "yes" -a "$has_hybris_props" = "yes")
148
154
 
149
155
# XML library
150
156
AC_CHECK_LIB(expat, XML_ParserCreate,