[go: up one dir, main page]

File: configure.ac

package info (click to toggle)
funionfs 0.4.3-6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,256 kB
  • ctags: 186
  • sloc: sh: 8,876; ansic: 3,032; makefile: 62
file content (27 lines) | stat: -rw-r--r-- 671 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
AC_PREREQ([2.60])

rm -f config.cache

AC_INIT(funionfs, 0.4.3)

AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE([ 1.9.6 ])

AC_PROG_CC
AC_PROG_LIBTOOL

AC_CHECK_LIB(fuse, fuse_main , , [AC_MSG_ERROR(fuse not found)])

# version 2.5 of fuse
CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=25 -DHAVE_SETXATTR"

# version 2.3 or 2.4 of fuse used don't forget to modify Makefile.am to add compat/fuse_opt.c
#CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=22 -DHAVE_SETXATTR"

#DEBUG flag added and version 2.5 of fuse Used
#CFLAGS="$CFLAGS -D_DEBUG=1 -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=25 -DHAVE_SETXATTR"

AC_OUTPUT([
Makefile
])