Mercurial > vba-linux
comparison configure.ac @ 45:6803cb8a6ebf
fix columns in configure.ac, and remove generated makefiles.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 21 Mar 2013 17:21:54 +0000 |
parents | 48369c6aeaa0 |
children | 858cb0e04ae5 |
comparison
equal
deleted
inserted
replaced
44:a80a707cc402 | 45:6803cb8a6ebf |
---|---|
35 | 35 |
36 | 36 |
37 | 37 |
38 # Checks for header files. | 38 # Checks for header files. |
39 AC_FUNC_ALLOCA | 39 AC_FUNC_ALLOCA |
40 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]) | 40 |
41 AC_CHECK_HEADERS([arpa/inet.h limits.h locale.h malloc.h netdb.h \ | |
42 netinet/in.h stddef.h stdint.h stdlib.h \ | |
43 string.h strings.h sys/socket.h unistd.h \ | |
44 libintl.h]) | |
41 | 45 |
42 # Checks for typedefs, structures, and compiler characteristics. | 46 # Checks for typedefs, structures, and compiler characteristics. |
43 AC_HEADER_STDBOOL | 47 AC_HEADER_STDBOOL |
44 AC_C_INLINE | 48 AC_C_INLINE |
45 AC_TYPE_INT16_T | 49 AC_TYPE_INT16_T |
58 AC_FUNC_FORK | 62 AC_FUNC_FORK |
59 AC_FUNC_MALLOC | 63 AC_FUNC_MALLOC |
60 AC_FUNC_MKTIME | 64 AC_FUNC_MKTIME |
61 AC_FUNC_REALLOC | 65 AC_FUNC_REALLOC |
62 AC_FUNC_STRCOLL | 66 AC_FUNC_STRCOLL |
63 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]) | 67 |
68 AC_CHECK_FUNCS([floor ftruncate gethostbyname gethostname inet_ntoa \ | |
69 localeconv memchr memset modf pow setlocale \ | |
70 socket sqrt strcasecmp strchr strcspn strdup \ | |
71 strerror strpbrk strrchr strstr strtoul]) | |
64 | 72 |
65 AC_CONFIG_FILES([Makefile | 73 AC_CONFIG_FILES([Makefile |
66 src/Makefile | 74 src/Makefile |
67 src/lua/Makefile | 75 src/lua/Makefile |
68 src/gb/Makefile | 76 src/gb/Makefile |
71 src/SFMT/Makefile | 79 src/SFMT/Makefile |
72 src/filters/Makefile | 80 src/filters/Makefile |
73 src/prof/Makefile | 81 src/prof/Makefile |
74 src/sdl/Makefile]) | 82 src/sdl/Makefile]) |
75 | 83 |
76 | |
77 | |
78 ### RLM: investigate this further | 84 ### RLM: investigate this further |
79 CXXFLAGS="$CXXFLAGS -DC_CORE" | 85 CXXFLAGS="$CXXFLAGS -DC_CORE" |
80 | 86 |
81 | |
82 AC_OUTPUT | 87 AC_OUTPUT |
83 |