blob: ba1e9a8fc420a1c712074712cabb93591c54c5f3 [file] [log] [blame]
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.63])
AC_INIT([PSEH], [2.0], [hackbunny@reactos.org])
AM_INIT_AUTOMAKE
AC_CANONICAL_HOST
AC_CONFIG_SRCDIR([include/pseh/pseh2.h])
AC_CONFIG_HEADERS([config.h])
AS_CASE([$host],
[i*86-*-mingw*],[],
[*],[AC_ERROR([Only Win32 host variants are supported])])
# Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB
AM_PROG_AS
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([stddef.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT