From ccf89f8e427d968ebf12cd924b491c485b5793f5 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Thu, 18 Jun 2009 01:29:23 -0400 Subject: [PATCH] configure.in as generated by autoconf --- configure.in | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 configure.in diff --git a/configure.in b/configure.in new file mode 100644 index 0000000..42fa0b3 --- /dev/null +++ b/configure.in @@ -0,0 +1,38 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ([2.63]) +AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) +AC_CONFIG_SRCDIR([file.h]) +AC_CONFIG_HEADERS([config.h]) + +# Checks for programs. +AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_MAKE_SET + +# Checks for libraries. +# FIXME: Replace `main' with a function in `-lSDL_image': +AC_CHECK_LIB([SDL_image], [main]) +# FIXME: Replace `main' with a function in `-lSDL_mixer': +AC_CHECK_LIB([SDL_mixer], [main]) + +# Checks for header files. +AC_CHECK_HEADERS([inttypes.h stddef.h stdlib.h string.h unistd.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_HEADER_STDBOOL +AC_C_INLINE +AC_TYPE_INT8_T +AC_TYPE_SIZE_T +AC_TYPE_UINT16_T +AC_TYPE_UINT32_T +AC_TYPE_UINT8_T + +# Checks for library functions. +AC_FUNC_MALLOC +AC_CHECK_FUNCS([atexit memset sqrt strdup]) + +AC_CONFIG_FILES([Makefile + windows_icon/Makefile]) +AC_OUTPUT -- 1.7.10.4