From 295361e4539d3db30abb6dd7518fbeeefe860c0c Mon Sep 17 00:00:00 2001 From: neoraider Date: Mon, 18 Apr 2005 15:27:00 +0000 Subject: Verzeichnisstruktur ge?ndert --- configure.in | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 configure.in (limited to 'configure.in') diff --git a/configure.in b/configure.in new file mode 100644 index 0000000..aecff14 --- /dev/null +++ b/configure.in @@ -0,0 +1,27 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.59) +AC_INIT(zoom, 0.1, matthias@gamezock.de) +AC_CONFIG_SRCDIR([zoom-bin.c]) +AC_CONFIG_HEADER([config.h]) + +AM_INIT_AUTOMAKE +AM_MAINTAINER_MODE + +# Checks for programs. +AC_PROG_CC + +# Checks for libraries. +AC_CHECK_LIB([zoom], [Render], , AC_MSG_ERROR([libzoom not found])) + +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. +AC_HEADER_TIME + +# Checks for library functions. +AC_CHECK_FUNCS([gettimeofday]) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT -- cgit v1.2.3