PageRenderTime 63ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/mythes-1.2.3/configure.ac

#
m4 | 31 lines | 19 code | 9 blank | 3 comment | 0 complexity | ef179d7588eca7c920d55e93d44cd686 MD5 | raw file
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. m4_pattern_allow
  4. AC_PREREQ(2.59)
  5. AC_INIT([mythes],[1.2.3],[nemeth@openoffice.org])
  6. AC_CANONICAL_SYSTEM
  7. AC_SUBST(XFAILED)
  8. AM_INIT_AUTOMAKE(mythes, 1.2.3)
  9. MYTHES_VERSION_MAJOR=`echo $VERSION | cut -d"." -f1`
  10. MYTHES_VERSION_MINOR=`echo $VERSION | cut -d"." -f2`
  11. AC_SUBST(MYTHES_VERSION_MAJOR)
  12. AC_SUBST(MYTHES_VERSION_MINOR)
  13. AC_CONFIG_SRCDIR([config.h.in])
  14. AC_CONFIG_HEADER([config.h])
  15. # Checks for programs.
  16. AC_PROG_CXX
  17. AC_PROG_CC
  18. AC_PROG_LIBTOOL
  19. AC_LIBTOOL_WIN32_DLL
  20. PKG_CHECK_MODULES(HUNSPELL, [hunspell])
  21. AC_CONFIG_FILES([Makefile mythes.pc])
  22. AC_OUTPUT