JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
configure.in as generated by autoconf
[vor.git] / configure.in
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.63])
5 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
6 AC_CONFIG_SRCDIR([file.h])
7 AC_CONFIG_HEADERS([config.h])
8
9 # Checks for programs.
10 AC_PROG_CC
11 AC_PROG_INSTALL
12 AC_PROG_MAKE_SET
13
14 # Checks for libraries.
15 # FIXME: Replace `main' with a function in `-lSDL_image':
16 AC_CHECK_LIB([SDL_image], [main])
17 # FIXME: Replace `main' with a function in `-lSDL_mixer':
18 AC_CHECK_LIB([SDL_mixer], [main])
19
20 # Checks for header files.
21 AC_CHECK_HEADERS([inttypes.h stddef.h stdlib.h string.h unistd.h])
22
23 # Checks for typedefs, structures, and compiler characteristics.
24 AC_HEADER_STDBOOL
25 AC_C_INLINE
26 AC_TYPE_INT8_T
27 AC_TYPE_SIZE_T
28 AC_TYPE_UINT16_T
29 AC_TYPE_UINT32_T
30 AC_TYPE_UINT8_T
31
32 # Checks for library functions.
33 AC_FUNC_MALLOC
34 AC_CHECK_FUNCS([atexit memset sqrt strdup])
35
36 AC_CONFIG_FILES([Makefile
37                  windows_icon/Makefile])
38 AC_OUTPUT