~ubuntu-branches/ubuntu/oneiric/network-manager/oneiric

« back to all changes in this revision

Viewing changes to src/dns-manager/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2010-11-09 13:01:48 UTC
  • mfrom: (1.1.38 upstream)
  • Revision ID: james.westby@ubuntu.com-20101109130148-zsxrlsunb0nmwbf4
Tags: 0.8.2-0ubuntu1
* new upstream release 0.8.2
  - update timestamp in active system connections every 5 mins
  - ignore authorization for sleep/wake requests (but restrict to root)
  - add timestamp to default auto wired connections (LP: #447067)
  - don't crash if for some reason HW addresses aren't available (bgo #630534)
  - ensure Enabled state is preserved regardless of rfkill (LP: #387345)
  - add dhcp4-change and dhcp6-change events (bgo #563654)
  - validate Enable/Disable WiFi and WWAN requests
  - handle VPN service installation/removal dynamically (LP: #458595)
  - let plugins forbid VPN connections from getting the default route
    (LP: #598357)
  - work around dbus-glib property access bug (CVE-2010-1172)
  - ensure dhcp_manager exists before trying to unref it (bgo #626610)
* drop dhcp3 support patch, it was applied upstream.
  - remove debian/patches/99-support-dhcp3.patch
  - update debian/patches/series
* drop cherry-picked patches to /etc/hosts handling, their changes are
  included in the source tarball:
  - remove debian/patches/lp659872_dont_overwite_hosts_aliases_ee9ce60.patch
  - remove debian/patches/lp632896_cleanup_etc_hosts.patch
  - update debian/patches/series
* Properly document workflow for working on NM packaging.
  - add debian/README.source
* Slight change to GET_SOURCE script. Looks like we were looking for the
  "orig" keyword in the wrong variable.
  - update debian/rules
* Fix typo in README.source
  - update debian/README.source
* network-manager Breaks: dhcp3-client (<< 4.1.1-P1-11) to provide seemless
  upgrades to isc-dhcp 4 and avoid unnecessary compatibility issues
* switch Build-Depends from dhcp3-client to isc-dhcp-client >= 4.1.1 to make
  sure we don't build with an old version of DHCP.
* libnm-glib2 also Breaks: dhcp3-client (<< 4.1.1-P1-11)
  - debian/control
* libnm-util1 Breaks: dhcp3-client (<< 4.1.1-P1-11) as well
  - debian/control
* Patch various files to support building with kernel headers 2.6.36 and
  newer (otherwise it conflicts with libc headers for interface structures)
  - debian/patches/do-not-include-netif.patch
  - debian/patches/series

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = \
 
2
        -I${top_srcdir}/src/logging \
 
3
        -I${top_srcdir}/libnm-util \
 
4
        -I${top_srcdir}/src \
 
5
        -I${top_srcdir}/include
 
6
 
 
7
noinst_LTLIBRARIES = libdns-manager.la
 
8
 
 
9
libdns_manager_la_SOURCES = \
 
10
        nm-dns-manager.h \
 
11
        nm-dns-manager.c \
 
12
        nm-dns-plugin.h \
 
13
        nm-dns-plugin.c \
 
14
        nm-dns-dnsmasq.h \
 
15
        nm-dns-dnsmasq.c \
 
16
        nm-dns-bind.h \
 
17
        nm-dns-bind.c
 
18
 
 
19
libdns_manager_la_CPPFLAGS = \
 
20
        $(DBUS_CFLAGS) \
 
21
        $(GLIB_CFLAGS) \
 
22
        -DLOCALSTATEDIR=\"$(localstatedir)\"
 
23
 
 
24
libdns_manager_la_LIBADD = \
 
25
        $(top_builddir)/src/logging/libnm-logging.la \
 
26
        $(DBUS_LIBS) \
 
27
        $(GLIB_LIBS)
 
28