summaryrefslogtreecommitdiffhomepage
path: root/filters/configure.ac
blob: 449ada3d576c1e59238b930ecce35e3ef1d68ce1 (plain)
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
27
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT(php-imlib-filters, 0.1, pp@siedziba.pl)
AC_CONFIG_SRCDIR([php_testfilter.c])
AC_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL


# Checks for libraries.
# FIXME: Replace `main' with a function in `-lm':
# AC_CHECK_LIB([m], [main])

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.
AC_HEADER_STDC
AC_CHECK_FUNCS([floor memset sqrt])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT