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.0KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. AC_PREREQ([2.65])
  2. AC_INIT([Unicode Character Database Tools], [0.1], [https://github.com/rhdunn/ucd-tools/issues], [ucd-tools], [https://github.com/rhdunn/ucd-tools])
  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. LT_INIT
  10. dnl ================================================================
  11. dnl Program checks.
  12. dnl ================================================================
  13. AC_PROG_CXX
  14. AC_PROG_MAKE_SET
  15. AC_PROG_LIBTOOL
  16. dnl ================================================================
  17. dnl Generate output.
  18. dnl ================================================================
  19. AC_CONFIG_FILES([Makefile])
  20. AC_OUTPUT
  21. AC_MSG_NOTICE([
  22. Configuration for Unicode Character Data Tools complete.
  23. Source code location: ${srcdir}
  24. XDG data location: ${XDGDATADIR}
  25. Compiler: ${CXX}
  26. Compiler flags: ${CXXFLAGS}
  27. ])