~ubuntu-branches/ubuntu/hardy/fuse/hardy-security

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2007-08-04 08:09:00 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070804080900-m1e9xpk5eitzmelg
Tags: 2.7.0-1ubuntu1
* Resynchronise with Debian (LP: #128292). Remaining changes:
  - Don't install the init script; install the udev rule and the module
    configuration file instead.
  - debian/45-fuse.rules: set /dev/fuse group to fuse.
  - debian/fuse-utils.modprobe: module configuration file that mounts the
    control filesystem when fuse is loaded and unmounts it when fuse is
    unloaded, along with checking that the control FS is mounting before
    unmounting it.
  - debian/fuse-utils.install: add the udev rule, the module configuration
    file, and ulockmgr_server.
  - Load fuse on install, and set it so it gets loaded on reboot.
  - Move fusermount and ulockmgr_server to /bin and associated libraries
    to /lib.
* Use dpkg-query to fetch conffile md5sums rather than parsing
  /var/lib/dpkg/status directly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT(fuse, 2.6.5)
 
1
AC_INIT(fuse, 2.7.0)
2
2
AC_CANONICAL_TARGET
3
3
AM_INIT_AUTOMAKE
4
4
AM_CONFIG_HEADER(include/config.h)
62
62
AC_CHECK_MEMBERS([struct stat.st_atim])
63
63
AC_CHECK_MEMBERS([struct stat.st_atimespec])
64
64
 
65
 
libfuse_libs=-pthread
 
65
libfuse_libs="-pthread"
66
66
LIBS=
 
67
AC_SEARCH_LIBS(dlopen, [dl])
67
68
AC_SEARCH_LIBS(clock_gettime, [rt])
68
69
libfuse_libs="$libfuse_libs $LIBS"
69
70
LIBS=
 
71
AC_ARG_WITH([libiconv-prefix],
 
72
[  --with-libiconv-prefix=DIR  search for libiconv in DIR/include and DIR/lib], [
 
73
    for dir in `echo "$withval" | tr : ' '`; do
 
74
      if test -d $dir/include; then CPPFLAGS="$CPPFLAGS -I$dir/include"; fi
 
75
      if test -d $dir/lib; then LDFLAGS="$LDFLAGS -L$dir/lib"; fi
 
76
    done
 
77
   ])
 
78
AM_ICONV
 
79
libfuse_libs="$libfuse_libs $LIBICONV"
 
80
AM_CONDITIONAL(ICONV, test "$am_cv_func_iconv" = yes)
70
81
AC_SUBST(libfuse_libs)
71
82
 
72
83
if test -z "$MOUNT_FUSE_PATH"; then
87
98
AM_CONDITIONAL(LINUX, test "$arch" = linux)
88
99
AM_CONDITIONAL(BSD, test "$arch" = bsd)
89
100
 
90
 
AC_CHECK_HEADERS(selinux/selinux.h, AC_CHECK_LIB(selinux, getfilecon))
91
 
 
92
101
AC_CONFIG_FILES([fuse.pc Makefile lib/Makefile util/Makefile example/Makefile include/Makefile])
93
102
AC_OUTPUT