From: Jason Woofenden Date: Thu, 18 Jun 2009 05:29:23 +0000 (-0400) Subject: configure.in as generated by autoconf X-Git-Tag: 0.5.5~16 X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=commitdiff_plain;h=ccf89f8e427d968ebf12cd924b491c485b5793f5;ds=sidebyside configure.in as generated by autoconf --- 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