File: configure.ac

package info (click to toggle)
dh-exec 0.30
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: ansic: 530; perl: 178; makefile: 126; sh: 67
file content (23 lines) | stat: -rw-r--r-- 619 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_INIT([dh-exec], [0.27], [algernon@debian.org])
AM_INIT_AUTOMAKE([foreign subdir-objects])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])])

AC_CONFIG_SRCDIR([src/dh-exec.simple.c])
AC_CONFIG_HEADERS([config.h])

AC_PROG_CC
AC_PROG_CC_C_O
PKG_PROG_PKG_CONFIG

PKG_CHECK_MODULES(LIBPIPELINE, libpipeline >= 1.2.0,,)

AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
AC_CHECK_FUNCS([setenv strdup strerror strstr])
AC_FUNC_MALLOC
AC_SYS_LARGEFILE

AC_CONFIG_FILES([Makefile])
AC_OUTPUT