Tests About Natural Selection In Virtual Environment
c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

configure.in 780B

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.67])
  4. AC_INIT(tansive)
  5. AM_INIT_AUTOMAKE(tansive, 0.1.1)
  6. AC_CONFIG_SRCDIR([src/map.c])
  7. AC_CONFIG_HEADERS([config/config.h])
  8. # Checks for programs.
  9. AC_PROG_CC
  10. AC_PROG_MAKE_SET
  11. # Checks for libraries.
  12. SDL_VERSION=1.1.3
  13. AM_PATH_SDL($SDL_VERSION,
  14. :,
  15. AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
  16. )
  17. CFLAGS="$CFLAGS $SDL_CFLAGS"
  18. LIBS="$LIBS $SDL_LIBS"
  19. # Checks for header files.
  20. AC_CHECK_HEADERS([stdlib.h string.h])
  21. # Checks for typedefs, structures, and compiler characteristics.
  22. # Checks for library functions.
  23. AC_FUNC_MALLOC
  24. AC_CHECK_FUNCS([bzero])
  25. AC_CONFIG_FILES([Makefile
  26. src/Makefile])
  27. AC_OUTPUT