urbackup_backend/piped_process/configure.ac
2011-01-06 17:43:38 +01:00

35 lines
675 B
Plaintext

# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([piped_process], [0.1], [urpc@gmx.de])
AC_CONFIG_SRCDIR([dllmain.cpp])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_LIBTOOL
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_TYPE_SIZE_T
AC_CHECK_HEADERS([stdlib.h stdio.h sys/types.h sys/stat.h errno.h fcntl.h signal.h])
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT