:pserver:anonymous@cvs.middle-man.sourceforge.net:/cvsroot/middle-man middleman
[middleman.git] / libntlm / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(libntlm, 0.3.1, bug-libntlm@josefsson.org)
3 AC_CONFIG_SRCDIR(ntlm.h.in)
4
5 # Interfaces removed:    CURRENT++, AGE=0, REVISION=0
6 # Interfaces added:      CURRENT++, AGE++, REVISION=0
7 # No interfaces changed:                   REVISION++
8 LT_CURRENT=0
9 LT_AGE=0
10 LT_REVISION=1
11 AC_SUBST(LT_CURRENT)
12 AC_SUBST(LT_AGE)
13 AC_SUBST(LT_REVISION)
14
15 AM_INIT_AUTOMAKE
16 AM_CONFIG_HEADER(config.h)
17
18 # Checks for programs.
19 AC_PROG_LIBTOOL
20 AC_PROG_CXX
21 AC_PROG_CC
22 AC_PROG_CPP
23 AC_PROG_INSTALL
24 AC_PROG_LN_S
25 AC_PROG_MAKE_SET
26 AC_PROG_RANLIB
27 AC_PROG_AWK
28
29 # Checks for header files.
30 AC_HEADER_STDC
31 AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
32
33 # Checks for typedefs, structures, and compiler characteristics.
34 AC_C_CONST
35 AC_TYPE_SIZE_T
36
37 # Checks for library functions.
38 AC_CHECK_FUNCS([memset strchr strdup])
39
40 AC_CONFIG_FILES([Makefile libntlm.pc ntlm.h])
41 AC_OUTPUT