~ubuntu-branches/ubuntu/precise/bluez-gnome/precise

« back to all changes in this revision

Viewing changes to properties/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello, Mario Limonciello, Emmet Hikory
  • Date: 2008-10-07 14:33:11 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081007143311-b1tsowbil2vl3133
Tags: 1.8-0ubuntu1
[ Mario Limonciello ]
* New upstream version (LP: #274950)
* debian/control:
  - Update Recommends for bluetooth to bring in the bluetooth stack.
* debian/patches:
  - Drop 05_hildon_ui for now since it doesn't work properly.
  - Drop 80_from_fedora_fix_nautilus_sendto_compatibility.patch as not necessary.
  - Drop 99_automake for now too.
  - Add 04_bluetooth-sendto-ods-svn.patch from F10 to let this work with SVN
    obex-data-server.
  - Add 05_bluetooth_sendto_dbus-snd.patch to make this more functional
    w/ SVN obex-data-server.
  - Add 07_null_device_name.patch to prevent showing "(null)" in wizard.

[ Emmet Hikory ]
* Add 06_preferences-horizontal-layout.patch for 800x600 support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
bin_PROGRAMS = bluetooth-properties
3
3
 
4
4
bluetooth_properties_SOURCES = main.c \
5
 
                        dialog.h dialog.c general.h general.c \
6
 
                        adapter.h adapter.c service.h service.c \
7
 
                        network.h network.c input.h input.c audio.h audio.c
 
5
                        general.h general.c killswitch.h killswitch.c \
 
6
                                        adapter.h adapter.c dialog.h dialog.c
8
7
 
9
8
bluetooth_properties_LDADD = $(top_builddir)/common/libcommon.a \
10
 
                        @GCONF_LIBS@ @GTK_LIBS@ @DBUS_LIBS@
 
9
                                @GCONF_LIBS@ @GTK_LIBS@ @HAL_LIBS@ @DBUS_LIBS@
11
10
 
12
 
AM_CFLAGS = @DBUS_CFLAGS@ @GTK_CFLAGS@ @GCONF_CFLAGS@
 
11
AM_CFLAGS = @DBUS_CFLAGS@ @HAL_CFLAGS@ @GTK_CFLAGS@ @GCONF_CFLAGS@
13
12
 
14
13
INCLUDES = -I$(top_srcdir)/common
15
14