File: configure.in

package info (click to toggle)
netmask 2.3.3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 488 kB
  • ctags: 55
  • sloc: ansic: 451; sh: 421; makefile: 53; perl: 29
file content (24 lines) | stat: -rw-r--r-- 482 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
dnl Process this file with autoconf to produce a configure script.
AC_INIT(netmask.c)
AM_INIT_AUTOMAKE(netmask, "2.3.3")

dnl Checks for programs.
AC_PROG_CC
AC_PROG_AWK
AC_PROG_INSTALL
AC_PROG_LN_S

dnl Checks for libraries.

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

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

dnl Checks for library functions.
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(strerror strtoul)

AC_OUTPUT(Makefile)