Mercurial > vba-linux
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 something6 AC_CONFIG_SRCDIR([src/lua/lopcodes.c])7 AC_CONFIG_HEADERS([config.h])10 # Checks for programs.11 AC_PROG_CXX12 AC_PROG_CC13 AC_PROG_RANLIB15 # 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_STDBOOL20 AC_C_INLINE21 AC_TYPE_SIZE_T22 AC_CHECK_TYPES([ptrdiff_t])24 # Checks for library functions.25 AC_FUNC_ERROR_AT_LINE26 AC_FUNC_MKTIME27 AC_FUNC_MALLOC28 AC_FUNC_REALLOC29 AC_FUNC_STRCOLL30 AC_CHECK_FUNCS([floor localeconv memchr memset dnl31 modf pow setlocale sqrt dnl32 strchr strcspn strerror dnl33 strpbrk strrchr strstr strtoul])35 AC_CONFIG_FILES([Makefile36 src/Makefile37 src/lua/Makefile38 src/gb/Makefile])40 AM_INIT_AUTOMAKE([dist-bzip2])42 AC_OUTPUT