~ubuntu-branches/debian/squeeze/sshfs-fuse/squeeze

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Bartosz Fenski
  • Date: 2006-02-03 14:10:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060203141051-1z0xaw6rrw4iv0ee
Tags: 1.6-1
* New upstream release.
  - fixes problem with saving files from GNOME apps. (Closes: #338496)
  - adds workaround for overwriting files. (Closes: #318078, #353968)
* Does not suggests module that does not exist. (Closes: #334513)
  - added README.Debian file with explanation how to get such module.
* README file now explains usage correctly. (Closes: #341490)
* Fixes typo in manual page. (Closes: #323496)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT(sshfs-fuse, 1.1)
 
1
AC_INIT(sshfs-fuse, 1.6)
2
2
AM_INIT_AUTOMAKE
3
3
AM_CONFIG_HEADER(config.h)
4
4
 
5
5
AC_PROG_CC
 
6
CFLAGS="$CFLAGS -Wall -W"
 
7
LIBS=
 
8
AC_SEARCH_LIBS(dlsym, [dl])
 
9
sshnodelay_libs=$LIBS
 
10
AC_SUBST(sshnodelay_libs)
 
11
LIBS=
 
12
 
6
13
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
7
14
PKG_CHECK_MODULES(SSHFS, [fuse >= 2.2 glib-2.0])
8
 
CFLAGS="$CFLAGS -Wall -W -D_REENTRANT $SSHFS_CFLAGS"
9
 
LIBS="$SSHFS_LIBS"
 
15
have_fuse_opt_parse=no
 
16
AC_CHECK_FUNC([fuse_opt_parse], [have_fuse_opt_parse=yes])
 
17
if test "$have_fuse_opt_parse" = no; then
 
18
        CFLAGS="$CFLAGS -Icompat"
 
19
fi
 
20
AM_CONDITIONAL(FUSE_OPT_COMPAT, test "$have_fuse_opt_parse" = no)
10
21
 
11
22
AC_CONFIG_FILES([Makefile])
12
23
AC_OUTPUT