~ubuntu-branches/ubuntu/hardy/ntfs-3g/hardy

« back to all changes in this revision

Viewing changes to libfuse-lite/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2008-03-07 11:21:45 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20080307112145-g4reiglv0inkb1xa
Tags: 1:1.2216-1ubuntu1
* New upstream bug fix release. (LP: #199161)
* Resynchronise with Debian. Remaining changes:
  - Add udeb shlibs entries for libntfs-3g23-udeb.
  - Bump debhelper build-dependency to 5.0.22 for dh_makeshlibs
    --add-udeb.
  - Create libntfs3g23-udeb and ntfs-3g-udeb.
  - Copy ntfs-3g into the initramfs. If ntfs-3g is used to mount the root
    filesystem (either directly or via a loopback mount), load the fuse
    module beforehand, and save ntfs-3g's PID (indirectly) in
    /var/run/sendsigs.omit.
  - Move ntfs-3g to /bin.
  - Move libntfs-3g.so.* to /lib. Adjust libntfs-3g.so symlink to match.
  - Add /sbin/mount.ntfs symlink to /bin/ntfs-3g.
  - Add a symlink for the mount.ntfs manual page too.
  - Pass basenames rather than full paths to pidof; create
    /dev/.initramfs/varrun if necessary (LP #150831).
  - Always add ntfs and ntfs-3g to sendsigs.omit (LP #181669).
  - Build against the external fuse libraries and add dependency on
    fuse-utils.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
MAINTAINERCLEANFILES = Makefile.in
 
3
 
 
4
if FUSE_INTERNAL
 
5
noinst_LTLIBRARIES = libfuse-lite.la
 
6
endif
 
7
 
 
8
libfuse_lite_la_CFLAGS=                   \
 
9
        $(AM_CFLAGS)                      \
 
10
        -I$(top_srcdir)/include/fuse-lite
 
11
 
 
12
libfuse_lite_la_LIBADD  = $(LIBFUSE_LITE_LIBS)
 
13
 
 
14
libfuse_lite_la_SOURCES =       \
 
15
        fuse.c                  \
 
16
        fuse_i.h                \
 
17
        fuse_kern_chan.c        \
 
18
        fuse_loop.c             \
 
19
        fuse_loop_mt.c          \
 
20
        fuse_lowlevel.c         \
 
21
        fuse_misc.h             \
 
22
        fuse_mt.c               \
 
23
        fuse_opt.c              \
 
24
        fuse_session.c          \
 
25
        fuse_signals.c          \
 
26
        fusermount.c            \
 
27
        helper.c                \
 
28
        mount.c                 \
 
29
        mount_util.c            \
 
30
        mount_util.h