eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
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.ac 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. AC_PREREQ([2.65])
  2. AC_INIT([eSpeak], [1.46], [https://github.com/rhdunn/espeak/issues], [espeak], [https://github.com/rhdunn/espeak])
  3. AM_INIT_AUTOMAKE()
  4. m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES])
  5. AM_SILENT_RULES([yes])
  6. AC_CONFIG_SRCDIR([src])
  7. AC_CONFIG_MACRO_DIR([m4])
  8. AC_CONFIG_HEADERS([config.h])
  9. dnl ================================================================
  10. dnl Program checks.
  11. dnl ================================================================
  12. AC_PROG_CXX
  13. AC_PROG_MAKE_SET
  14. AC_PROG_LIBTOOL
  15. dnl ================================================================
  16. dnl getopt checks.
  17. dnl ================================================================
  18. AC_CHECK_HEADERS([getopt.h])
  19. AC_CHECK_FUNCS([getopt_long])
  20. dnl ================================================================
  21. dnl Generate output.
  22. dnl ================================================================
  23. AC_CONFIG_FILES([Makefile])
  24. AC_OUTPUT
  25. AC_MSG_NOTICE([
  26. Configuration for eSpeak complete.
  27. Source code location: ${srcdir}
  28. XDG data location: ${XDGDATADIR}
  29. Compiler: ${CXX}
  30. Compiler flags: ${CXXFLAGS}
  31. ])