File: configure.in

package info (click to toggle)
pgpdump 0.36-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 544 kB
  • sloc: ansic: 2,583; makefile: 82; sh: 33; haskell: 29
file content (26 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (6)
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
dnl Process this file with autoconf to produce a configure script.
AC_INIT(pgpdump.c)

dnl Checks for programs.
dnl AC_PROG_INSTALL

dnl Checks for libraries.
AC_CHECK_LIB(z, inflate)
AC_CHECK_LIB(bz2, BZ2_bzBuffToBuffDecompress)

dnl Checks for header files.
AC_CONFIG_HEADER(config.h)
AC_HEADER_STDC
AC_CHECK_HEADERS(unistd.h)
AC_CHECK_HEADERS(sys/time.h)
AC_CHECK_HEADERS(unixlib/local.h)
AC_HEADER_TIME

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

dnl Checks for library functions.

AC_SYS_LARGEFILE

AC_OUTPUT(Makefile)