comparison configure.ac @ 28:2efb971df515

bringing in SDL package
author Robert McIntyre <rlm@mit.edu>
date Sun, 04 Mar 2012 21:06:50 -0600
parents b970226568d2
children 48369c6aeaa0
comparison
equal deleted inserted replaced
27:b970226568d2 28:2efb971df515
25 AC_CHECK_LIB([pthread], [pthread_create]) 25 AC_CHECK_LIB([pthread], [pthread_create])
26 26
27 27
28 28
29 # Checks for header files. 29 # Checks for header files.
30 AC_CHECK_HEADERS([arpa/inet.h limits.h locale.h malloc.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/socket.h unistd.h]) 30 AC_FUNC_ALLOCA
31 AC_CHECK_HEADERS([arpa/inet.h limits.h locale.h malloc.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/socket.h unistd.h libintl.h])
31 32
32 # Checks for typedefs, structures, and compiler characteristics. 33 # Checks for typedefs, structures, and compiler characteristics.
33 AC_HEADER_STDBOOL 34 AC_HEADER_STDBOOL
34 AC_C_INLINE 35 AC_C_INLINE
35 AC_TYPE_INT16_T 36 AC_TYPE_INT16_T
50 AC_FUNC_MKTIME 51 AC_FUNC_MKTIME
51 AC_FUNC_REALLOC 52 AC_FUNC_REALLOC
52 AC_FUNC_STRCOLL 53 AC_FUNC_STRCOLL
53 AC_CHECK_FUNCS([floor ftruncate gethostbyname gethostname inet_ntoa localeconv memchr memset modf pow setlocale socket sqrt strcasecmp strchr strcspn strdup strerror strpbrk strrchr strstr strtoul]) 54 AC_CHECK_FUNCS([floor ftruncate gethostbyname gethostname inet_ntoa localeconv memchr memset modf pow setlocale socket sqrt strcasecmp strchr strcspn strdup strerror strpbrk strrchr strstr strtoul])
54 55
55
56
57
58 AC_CONFIG_FILES([Makefile 56 AC_CONFIG_FILES([Makefile
59 src/Makefile 57 src/Makefile
60 src/lua/Makefile 58 src/lua/Makefile
61 src/gb/Makefile 59 src/gb/Makefile
62 src/gba/Makefile 60 src/gba/Makefile
63 src/common/Makefile 61 src/common/Makefile
64 src/SFMT/Makefile 62 src/SFMT/Makefile
65 src/filters/Makefile]) 63 src/filters/Makefile
64 src/sdl/Makefile])
66 65
67 66
68 67
69 AC_OUTPUT 68 AC_OUTPUT
70 69