configure.in 826 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_PREREQ(2.59)
  3. AC_INIT([minimal],[1.2.5],[vslavik@fastmail.fm])
  4. AC_CONFIG_SRCDIR([minimal.cpp])
  5. AC_CANONICAL_BUILD
  6. AC_CANONICAL_HOST
  7. AC_CANONICAL_TARGET
  8. AM_OPTIONS_WXCONFIG
  9. dnl Checks for programs.
  10. AC_PROG_AWK
  11. AC_PROG_INSTALL
  12. AC_PROG_LN_S
  13. AC_PROG_RANLIB
  14. AC_PROG_CC
  15. AC_PROG_CXX
  16. AC_PROG_CXXCPP
  17. AM_PATH_WXCONFIG(2.4.1, WXFOUND=1)
  18. if test "$WXFOUND" != 1; then
  19. AC_MSG_ERROR([
  20. Please check that wx-config is in path, the directory
  21. where wxWindows libraries are installed (returned by
  22. 'wx-config --libs' command) is in LD_LIBRARY_PATH or
  23. equivalent variable and wxWindows is version 2.4.0 or above.
  24. ])
  25. fi
  26. AC_BAKEFILE([m4_include(autoconf_inc.m4)])
  27. AC_CONFIG_FILES([
  28. Makefile
  29. ])
  30. AC_OUTPUT