24 lines
540 B
Text
24 lines
540 B
Text
|
# -*- Autoconf -*-
|
||
|
# Process this file with autoconf to produce a configure script.
|
||
|
|
||
|
AC_PREREQ([2.65])
|
||
|
AC_INIT([runner], [0.01], [markus.kauppila@gmail.com])
|
||
|
AC_CONFIG_SRCDIR([runner.c])
|
||
|
AC_CONFIG_HEADERS([config.h])
|
||
|
|
||
|
# Checks for programs.
|
||
|
AC_PROG_CC
|
||
|
|
||
|
# Checks for libraries.
|
||
|
|
||
|
# Checks for header files.
|
||
|
AC_CHECK_HEADERS([stdlib.h unistd.h])
|
||
|
|
||
|
# Checks for typedefs, structures, and compiler characteristics.
|
||
|
|
||
|
# Checks for library functions.
|
||
|
AC_FUNC_FORK
|
||
|
|
||
|
AC_CONFIG_FILES([Makefile])
|
||
|
AC_OUTPUT
|