File: configure.ac

package info (click to toggle)
nfs4-acl-tools 0.4.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: sh: 3,213; ansic: 2,533; makefile: 237
file content (35 lines) | stat: -rw-r--r-- 707 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
28
29
30
31
32
33
34
35
AC_INIT([nfs4-acl-tools],[0.3.3])
AC_CONFIG_HEADERS(include/config.h)
AC_PREFIX_DEFAULT(/usr/local)

AC_CONFIG_MACRO_DIRS([m4])

AC_ARG_ENABLE(shared,
			  [  --enable-shared=[yes/no]  Enable use of shared libraries [default=no]],,
			     enable_shared=no)
AC_SUBST(enable_shared)

AC_PROG_INSTALL
AC_PROG_CC

AC_CHECK_HEADERS([netinet/in.h stdlib.h string.h unistd.h])
AC_CHECK_HEADERS([attr/xattr.h sys/xattr.h])

AC_C_CONST
AC_TYPE_UID_T
AC_C_INLINE
AC_TYPE_MODE_T
AC_TYPE_SIZE_T

AC_FUNC_MALLOC
AC_FUNC_STAT
AC_CHECK_FUNCS([memset strchr])

AC_CHECK_LIB([attr], [getxattr])

AC_PACKAGE_GLOBALS([nfs4acl])
AC_PACKAGE_UTILITIES([nfs4acl])
AC_MANUAL_FORMAT

AC_CONFIG_FILES([include/builddefs])
AC_OUTPUT