File: configure.in

package info (click to toggle)
librpcsecgss 0.14-2etch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,692 kB
  • ctags: 568
  • sloc: sh: 8,310; ansic: 4,538; makefile: 49
file content (38 lines) | stat: -rw-r--r-- 1,046 bytes parent folder | download | duplicates (2)
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
36
37
38
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(librpcsecgss, 0.14, nfsv4-wg@citi.umich.edu)
AC_CONFIG_SRCDIR([src/auth_gss.c])
AM_INIT_AUTOMAKE(librpcsecgss, 0.14, nfsv4-wg@citi.umich.edu)
AM_PROG_LIBTOOL

# Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB

# Checks for libraries.
PKG_CHECK_MODULES([GSSAPI], [libgssapi >= 0.9], [],
  [AC_MSG_ERROR([Unable to locate information required to use libgssapi.
  If you have pkgconfig installed, you might try setting environment
  variable PKG_CONFIG_PATH to /usr/local/lib/pkgconfig])])

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

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

# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_MEMCMP
AC_FUNC_REALLOC
AC_CHECK_FUNCS([memset strerror])

AC_CONFIG_FILES([Makefile
                 src/Makefile])

AC_OUTPUT(librpcsecgss.pc)