Mercurial > vba-clojure
view configure.ac @ 14:32bb141d34de
cleaning up lua stuff
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 11:29:11 -0600 |
parents | 3c287cb0ace6 |
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 something6 AC_CONFIG_SRCDIR([src/lua/lopcodes.c])7 AC_CONFIG_HEADERS([config.h])8 AC_PROG_RANLIB10 # 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_T15 AC_CHECK_TYPES([ptrdiff_t])17 # Checks for library functions.18 AC_FUNC_ERROR_AT_LINE19 AC_FUNC_MKTIME20 AC_FUNC_REALLOC21 AC_FUNC_STRCOLL22 AC_CHECK_FUNCS([floor localeconv memchr modf pow setlocale sqrt strchr strcspn strerror strpbrk strrchr strstr strtoul])24 AC_CONFIG_FILES([Makefile25 src/Makefile26 src/lua/Makefile])28 AM_INIT_AUTOMAKE([dist-bzip2])30 AC_OUTPUT