1# -*- Autoconf -*- 2# Process this file with autoconf to produce a configure script. 3 4AC_PREREQ([2.69]) 5AC_INIT([PSEH],[2.0],[hackbunny@reactos.org]) 6AC_CONFIG_AUX_DIR([build-aux]) 7AC_CONFIG_SRCDIR([include/pseh/pseh2.h]) 8AC_CONFIG_HEADERS([config.h]) 9 10AM_INIT_AUTOMAKE 11 12AC_CANONICAL_HOST 13 14AS_CASE([$host], 15 [i*86-*-mingw*],[], 16 [*],[AC_MSG_ERROR([Only x86 32-bit Win32 host variants are supported])]) 17 18# Checks for programs. 19AC_PROG_CC 20AC_PROG_RANLIB 21AM_PROG_AS 22 23# Checks for libraries. 24 25# Checks for header files. 26AC_CHECK_HEADERS([stddef.h]) 27 28# Checks for typedefs, structures, and compiler characteristics. 29 30# Checks for library functions. 31 32AC_CONFIG_FILES([Makefile]) 33AC_OUTPUT 34