File: configure.in

package info (click to toggle)
libnfsidmap 0.8-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,408 kB
  • ctags: 232
  • sloc: sh: 7,897; ansic: 1,949; makefile: 71
file content (29 lines) | stat: -rw-r--r-- 636 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
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(libnfsidmap.c)
AC_CONFIG_SRCDIR([nfsidmap.h])
AM_INIT_AUTOMAKE(nfsidmap, 0.1)
AM_PROG_LIBTOOL

# Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB

# Checks for libraries.

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h unistd.h errno.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_UID_T
AC_TYPE_SIZE_T

# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([strchr strdup])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT