annotate configure.ac @ 46:858cb0e04ae5

cleanup.
author Robert McIntyre <rlm@mit.edu>
date Thu, 21 Mar 2013 17:48:45 +0000
parents 6803cb8a6ebf
children 3907aac7df1c
rev   line source
rlm@9 1 AC_PREREQ([2.68])
rlm@9 2
rlm@46 3 AC_INIT([VisualBoyAdvance], [1.7.2])
rlm@6 4
rlm@19 5 AC_CONFIG_AUX_DIR([build-aux])
rlm@19 6
rlm@19 7 AM_INIT_AUTOMAKE([foreign dist-bzip2])
rlm@19 8
rlm@46 9 AC_CONFIG_SRCDIR([src/gb/GB.cpp])
rlm@46 10
rlm@9 11 AC_CONFIG_HEADERS([config.h])
rlm@18 12
rlm@18 13 # Checks for programs.
rlm@18 14 AC_PROG_CXX
rlm@18 15 AC_PROG_CC
rlm@21 16 AC_PROG_AWK
rlm@21 17 AC_PROG_INSTALL
rlm@9 18 AC_PROG_RANLIB
rlm@21 19 AC_PROG_CPP
rlm@21 20 AC_PROG_MKDIR_P
rlm@27 21 AC_PATH_PROG(NASM, nasm)
rlm@19 22
rlm@21 23 # Checks for libraries.
rlm@30 24 AC_CHECK_LIB(z, gzopen,
rlm@30 25 , AC_MSG_ERROR([*** Cannot compile without zlib.]))
rlm@46 26
rlm@30 27 AC_CHECK_LIB(png, png_create_write_struct,
rlm@46 28 , AC_MSG_ERROR([*** Cannot compile without libpng.]))
rlm@30 29
rlm@30 30 SDL_VERSION=1.2.2
rlm@30 31 AM_PATH_SDL($SDL_VERSION, :,
rlm@30 32 AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]))
rlm@46 33
rlm@21 34 AC_CHECK_LIB([SDL], [SDL_Init])
rlm@30 35
rlm@21 36 AC_CHECK_LIB([pthread], [pthread_create])
rlm@19 37
rlm@9 38 # Checks for header files.
rlm@28 39 AC_FUNC_ALLOCA
rlm@45 40
rlm@45 41 AC_CHECK_HEADERS([arpa/inet.h limits.h locale.h malloc.h netdb.h \
rlm@46 42 netinet/in.h stddef.h stdint.h stdlib.h string.h \
rlm@46 43 strings.h sys/socket.h unistd.h libintl.h])
rlm@9 44
rlm@9 45 # Checks for typedefs, structures, and compiler characteristics.
rlm@18 46 AC_HEADER_STDBOOL
rlm@18 47 AC_C_INLINE
rlm@21 48 AC_TYPE_INT16_T
rlm@21 49 AC_TYPE_INT32_T
rlm@21 50 AC_TYPE_INT64_T
rlm@21 51 AC_TYPE_INT8_T
rlm@9 52 AC_TYPE_SIZE_T
rlm@21 53 AC_TYPE_UINT16_T
rlm@21 54 AC_TYPE_UINT32_T
rlm@21 55 AC_TYPE_UINT64_T
rlm@21 56 AC_TYPE_UINT8_T
rlm@9 57 AC_CHECK_TYPES([ptrdiff_t])
rlm@9 58
rlm@9 59 # Checks for library functions.
rlm@9 60 AC_FUNC_ERROR_AT_LINE
rlm@21 61 AC_FUNC_FORK
rlm@21 62 AC_FUNC_MALLOC
rlm@9 63 AC_FUNC_MKTIME
rlm@9 64 AC_FUNC_REALLOC
rlm@9 65 AC_FUNC_STRCOLL
rlm@45 66
rlm@45 67 AC_CHECK_FUNCS([floor ftruncate gethostbyname gethostname inet_ntoa \
rlm@46 68 localeconv memchr memset modf pow setlocale socket \
rlm@46 69 sqrt strcasecmp strchr strcspn strdup strerror \
rlm@46 70 strpbrk strrchr strstr strtoul])
rlm@21 71
rlm@8 72 AC_CONFIG_FILES([Makefile
rlm@8 73 src/Makefile
rlm@18 74 src/lua/Makefile
rlm@19 75 src/gb/Makefile
rlm@19 76 src/gba/Makefile
rlm@26 77 src/common/Makefile
rlm@27 78 src/SFMT/Makefile
rlm@28 79 src/filters/Makefile
rlm@30 80 src/prof/Makefile
rlm@28 81 src/sdl/Makefile])
rlm@8 82
rlm@30 83 ### RLM: investigate this further
rlm@30 84 CXXFLAGS="$CXXFLAGS -DC_CORE"
rlm@30 85
rlm@6 86 AC_OUTPUT