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

« back to all changes in this revision

Viewing changes to include/fuse-lite/fuse_lowlevel_compat.h

  • 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
    FUSE: Filesystem in Userspace
 
3
    Copyright (C) 2001-2007  Miklos Szeredi <miklos@szeredi.hu>
 
4
 
 
5
    This program can be distributed under the terms of the GNU LGPLv2.
 
6
    See the file COPYING.LIB.
 
7
*/
 
8
 
 
9
/* these definitions provide source compatibility to prior versions.
 
10
   Do not include this file directly! */
 
11
 
 
12
size_t fuse_dirent_size(size_t namelen);
 
13
 
 
14
char *fuse_add_dirent(char *buf, const char *name, const struct stat *stbuf,
 
15
                      off_t off);
 
16