Imported Debian patch 0.60.1-1
[hcoop/debian/courier-authlib.git] / numlib / configure.in
CommitLineData
d9898ee8 1dnl Process this file with autoconf to produce a configure script.
2dnl $Id: configure.in,v 1.6 2004/12/10 02:34:46 mrsam Exp $
3dnl
4dnl Copyright 1998 - 2004 Double Precision, Inc. See COPYING for
5dnl distribution information.
6
7AC_PREREQ(2.59)
8AC_INIT(numlib, 0.10, courier-users@lists.sourceforge.net)
9
10>confdefs.h # Kill PACKAGE_ macros
11
12AC_CONFIG_SRCDIR([atotimet.c])
13AM_CONFIG_HEADER([config.h])
14AM_INIT_AUTOMAKE([foreign no-define])
15
16dnl Checks for programs.
17AC_PROG_AWK
18AC_PROG_CC
19AC_PROG_INSTALL
20AC_PROG_LN_S
21AC_PROG_LIBTOOL
22
23if test "$GCC" = "yes"
24then
25 CFLAGS="$CFLAGS -Wall"
26fi
27
28dnl Checks for libraries.
29
30dnl Checks for header files.
31
32AC_CHECK_HEADERS(unistd.h)
33
34dnl Checks for typedefs, structures, and compiler characteristics.
35AC_TYPE_UID_T
36AC_TYPE_PID_T
37
38dnl Checks for library functions.
39
40AC_CHECK_FUNCS(setgroups initgroups)
41AC_OUTPUT(Makefile)