File: configure.in

package info (click to toggle)
bulkmail 1.13-1
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 172 kB
  • ctags: 79
  • sloc: ansic: 1,119; makefile: 52
file content (20 lines) | stat: -rw-r--r-- 456 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
dnl Process this file with autoconf to produce a configure script.
AC_INIT(bulk_mailer.c)

dnl Checks for programs.

dnl Checks for libraries.
AC_CHECK_LIB(nsl,gethostbyname)
AC_CHECK_LIB(socket,socket)

dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(string.h)

dnl Checks for typedefs, structures, and compiler characteristics.
AC_STRUCT_TM

dnl Checks for library functions.
AC_CHECK_FUNCS(gethostname strdup strerror)

AC_OUTPUT(Makefile)