File: configure.in

package info (click to toggle)
tkping 0.1.1-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 392 kB
  • ctags: 71
  • sloc: sh: 2,640; perl: 1,830; makefile: 64
file content (30 lines) | stat: -rw-r--r-- 608 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
25
26
27
28
29
30
dnl Process this file with autoconf to produce a configure script.

AC_INIT(tkping.conf)
AC_CONFIG_AUX_DIR(config)

dnl Every other copy of the package version number gets its value from here
AM_INIT_AUTOMAKE(tkping, 0.1.1)

AC_SUBST(VERSION)

ISODATE=`date +%Y-%m-%d`
AC_SUBST(ISODATE)

AC_CANONICAL_HOST

dnl Checks for programs.
AC_PROG_INSTALL
dnl AC_PROG_CC  -- no CC use

dnl Checks for libraries.

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

dnl Checks for typedefs, structures, and compiler characteristics.

dnl Checks for library functions.

AC_OUTPUT(Makefile)