~ubuntu-branches/ubuntu/breezy/remind/breezy

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Javier Fernandez-Sanguino Pen~a
  • Date: 1999-02-19 13:36:15 UTC
  • Revision ID: james.westby@ubuntu.com-19990219133615-ovob95sord67b0ks
Tags: 03.00.22-1
* NMU upload, maintainer seems to be missing.
* Changed to main (now GPL) (Closes: #42402)
* New upstream version (Closes: #59447)
* Moved to use debconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Process this file with autoconf to produce a configure script.
 
2
dnl $Id: configure.in,v 1.8 2000/03/15 16:05:19 dfs Exp $
 
3
 
 
4
AC_INIT(src/queue.c)
 
5
 
 
6
cat <<'EOF'
 
7
 
 
8
**********************
 
9
*                    *
 
10
* Configuring REMIND *
 
11
*                    *
 
12
**********************
 
13
 
 
14
EOF
 
15
 
 
16
AC_CONFIG_HEADER(src/config.h)
 
17
 
 
18
dnl Checks for programs.
 
19
AC_PROG_CC
 
20
AC_PROG_INSTALL
 
21
AC_PROG_LN_S
 
22
AC_PROG_MAKE_SET
 
23
 
 
24
dnl Checks for libraries.
 
25
dnl Replace `main' with a function in -lm:
 
26
 
 
27
AC_CHECK_LIB(m, sqrt)
 
28
 
 
29
dnl Checks for header files.
 
30
AC_HEADER_STDC
 
31
AC_CHECK_HEADERS(sys/file.h sys/select.h sys/time.h sys/types.h unistd.h malloc.h stdarg.h stdlib.h pwd.h)
 
32
 
 
33
dnl Checks for typedefs, structures, and compiler characteristics.
 
34
AC_C_CONST
 
35
AC_STRUCT_TM
 
36
 
 
37
dnl Checks for library functions.
 
38
AC_TYPE_SIGNAL
 
39
AC_TYPE_PID_T
 
40
AC_TYPE_UID_T
 
41
AC_FUNC_UTIME_NULL
 
42
AC_HEADER_TIME
 
43
AC_FUNC_VPRINTF
 
44
AC_CHECK_FUNCS(mktime putenv strstr timegm difftime)
 
45
 
 
46
if test "$GCC" = yes; then
 
47
        CFLAGS="$CFLAGS -Wall -Wstrict-prototypes"
 
48
fi
 
49
 
 
50
AC_OUTPUT(src/Makefile)