view configure.ac @ 12:3c287cb0ace6

complete raising of lua source
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 11:09:16 -0600
parents cd43af719f55
children ac56489c2ca6
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])
8 AC_PROG_RANLIB
10 # Checks for header files.
11 AC_CHECK_HEADERS([limits.h locale.h stddef.h stdlib.h string.h unistd.h])
13 # Checks for typedefs, structures, and compiler characteristics.
14 AC_TYPE_SIZE_T
15 AC_CHECK_TYPES([ptrdiff_t])
17 # Checks for library functions.
18 AC_FUNC_ERROR_AT_LINE
19 AC_FUNC_MKTIME
20 AC_FUNC_REALLOC
21 AC_FUNC_STRCOLL
22 AC_CHECK_FUNCS([floor localeconv memchr modf pow setlocale sqrt strchr strcspn strerror strpbrk strrchr strstr strtoul])
24 AC_CONFIG_FILES([Makefile
25 src/Makefile
26 src/lua/Makefile])
28 AM_INIT_AUTOMAKE([dist-bzip2])
30 AC_OUTPUT