comparison configure.ac @ 9:cd43af719f55

working on only lua
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 11:03:44 -0600
parents 08a8e09ca414
children 3c287cb0ace6
comparison
equal deleted inserted replaced
8:08a8e09ca414 9:cd43af719f55
1 AC_PREREQ([2.68])
2
1 AC_INIT([vba-rlm], [1.0]) 3 AC_INIT([vba-rlm], [1.0])
4
5 dnl TODO: change this to gba.cpp or something
6 AC_CONFIG_SRCDIR([src/lua/src/lopcodes.c])
7 AC_CONFIG_HEADERS([config.h])
8 AC_PROG_RANLIB
9
10 # Checks for header files.
11 AC_CHECK_HEADERS([limits.h locale.h stddef.h stdlib.h string.h unistd.h])
12
13 # Checks for typedefs, structures, and compiler characteristics.
14 AC_TYPE_SIZE_T
15 AC_CHECK_TYPES([ptrdiff_t])
16
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])
2 23
3 AC_CONFIG_FILES([Makefile 24 AC_CONFIG_FILES([Makefile
4 src/Makefile 25 src/Makefile
5 src/lua/Makefile]) 26 src/lua/Makefile])
6 27