~ubuntu-branches/ubuntu/oneiric/hal/oneiric

« back to all changes in this revision

Viewing changes to .pc/52-kfreebsd-libufs.patch/hald/freebsd/probing/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-02-14 11:45:59 UTC
  • Revision ID: james.westby@ubuntu.com-20110214114559-g5ti3fxottbysekt
Tags: 0.5.14-5+svn1
Upload current Debian svn head to fix FTBFS.

* Add 00upstream_video4linux_check.patch: Do not build
  hald-probe-video4linux if v4l1 is not available. (LP: #721399)
* Refresh 99-autoreconf.patch for above.
* 45-fix-libusb-detection.patch: Unfuzz.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AM_CPPFLAGS = \
 
2
        -DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
 
3
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
 
4
        -DPACKAGE_BIN_DIR=\""$(bindir)"\" \
 
5
        -DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
 
6
        -DPACKAGE_LOCALSTATEDIR=\""$(localstatedir)"\" \
 
7
        -I$(top_srcdir) \
 
8
        @DBUS_CFLAGS@
 
9
 
 
10
if HALD_COMPILE_FREEBSD
 
11
libexec_PROGRAMS = \
 
12
        hald-probe-hiddev               \
 
13
        hald-probe-mouse                \
 
14
        hald-probe-scsi                 \
 
15
        hald-probe-smbios               \
 
16
        hald-probe-storage              \
 
17
        hald-probe-volume
 
18
 
 
19
if HAVE_LIBUSB20
 
20
libexec_PROGRAMS += \
 
21
        hald-probe-usb2-device          \
 
22
        hald-probe-usb2-interface
 
23
endif
 
24
endif
 
25
 
 
26
hald_probe_hiddev_SOURCES = probe-hiddev.c
 
27
hald_probe_hiddev_LDADD = \
 
28
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la  \
 
29
        -lusbhid
 
30
 
 
31
if HAVE_LIBUSB20
 
32
hald_probe_usb2_device_SOURCES = probe-usb2-device.c
 
33
hald_probe_usb2_device_LDADD = \
 
34
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la  \
 
35
        @LIBUSB20_LIBS@
 
36
 
 
37
hald_probe_usb2_interface_SOURCES = probe-usb2-interface.c
 
38
hald_probe_usb2_interface_LDADD = \
 
39
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la  \
 
40
        @LIBUSB20_LIBS@
 
41
endif
 
42
 
 
43
hald_probe_mouse_SOURCES = probe-mouse.c
 
44
hald_probe_mouse_CPPFLAGS = $(AM_CPPFLAGS) @GLIB_CFLAGS@
 
45
hald_probe_mouse_LDADD = \
 
46
        @GLIB_LIBS@     \
 
47
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la \
 
48
        -lutil
 
49
 
 
50
hald_probe_smbios_SOURCES = probe-smbios.c
 
51
hald_probe_smbios_LDADD = \
 
52
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la
 
53
 
 
54
hald_probe_scsi_SOURCES = probe-scsi.c
 
55
hald_probe_scsi_LDADD = \
 
56
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la
 
57
 
 
58
hald_probe_storage_SOURCES = freebsd_dvd_rw_utils.c freebsd_dvd_rw_utils.h probe-storage.c
 
59
hald_probe_storage_CPPFLAGS = $(AM_CPPFLAGS) @GLIB_CFLAGS@ @VOLUME_ID_CFLAGS@
 
60
hald_probe_storage_LDADD = \
 
61
        @GLIB_LIBS@                                                     \
 
62
        @VOLUME_ID_LIBS@                                                \
 
63
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la
 
64
 
 
65
hald_probe_volume_SOURCES = freebsd_dvd_rw_utils.c freebsd_dvd_rw_utils.h probe-volume.c
 
66
hald_probe_volume_CPPFLAGS = $(AM_CPPFLAGS) @GLIB_CFLAGS@ @VOLUME_ID_CFLAGS@
 
67
hald_probe_volume_LDADD = \
 
68
        @GLIB_LIBS@                                                     \
 
69
        @VOLUME_ID_LIBS@                                                \
 
70
        -lufs                                                           \
 
71
        $(top_builddir)/hald/freebsd/libprobe/libhald_freebsd_probe.la