view configure.ac @ 18:ac56489c2ca6

need to fix NLS.h problem
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 12:06:10 -0600
parents 3c287cb0ace6
children 5e8e5083da94
line wrap: on
line source
1 AC_PREREQ([2.68])
3 AC_INIT([vba-rlm], [1.0])
5 dnl TODO: change this to gba.cpp or something
6 AC_CONFIG_SRCDIR([src/lua/lopcodes.c])
7 AC_CONFIG_HEADERS([config.h])
10 # Checks for programs.
11 AC_PROG_CXX
12 AC_PROG_CC
13 AC_PROG_RANLIB
15 # Checks for header files.
16 AC_CHECK_HEADERS([limits.h locale.h stddef.h stdlib.h string.h unistd.h])
18 # Checks for typedefs, structures, and compiler characteristics.
19 AC_HEADER_STDBOOL
20 AC_C_INLINE
21 AC_TYPE_SIZE_T
22 AC_CHECK_TYPES([ptrdiff_t])
24 # Checks for library functions.
25 AC_FUNC_ERROR_AT_LINE
26 AC_FUNC_MKTIME
27 AC_FUNC_MALLOC
28 AC_FUNC_REALLOC
29 AC_FUNC_STRCOLL
30 AC_CHECK_FUNCS([floor localeconv memchr memset dnl
31 modf pow setlocale sqrt dnl
32 strchr strcspn strerror dnl
33 strpbrk strrchr strstr strtoul])
35 AC_CONFIG_FILES([Makefile
36 src/Makefile
37 src/lua/Makefile
38 src/gb/Makefile])
40 AM_INIT_AUTOMAKE([dist-bzip2])
42 AC_OUTPUT