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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. AC_PREREQ([2.65])
  2. AC_INIT([Unicode Character Database Tools], [9.0.0], [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_CC
  14. AC_PROG_CXX
  15. AC_PROG_MAKE_SET
  16. dnl ================================================================
  17. dnl library checks.
  18. dnl ================================================================
  19. AC_CHECK_HEADERS([stddef.h]) dnl C89
  20. AC_TYPE_UINT8_T
  21. AC_TYPE_UINT32_T
  22. dnl ================================================================
  23. dnl UCD data configuration.
  24. dnl ================================================================
  25. AC_ARG_WITH([unicode-version],
  26. [AS_HELP_STRING([--with-unicode-version], [Unicode version to support @<:@default=9.0.0@:>@])],
  27. [AS_IF([test x"$withval" != x],
  28. [UCD_VERSION="$withval"])],
  29. [UCD_VERSION="9.0.0"])
  30. AC_SUBST(UCD_VERSION)
  31. dnl ================================================================
  32. dnl Generate output.
  33. dnl ================================================================
  34. AC_CONFIG_FILES([Makefile])
  35. AC_OUTPUT
  36. AC_MSG_NOTICE([
  37. Configuration for Unicode Character Data Tools complete.
  38. Source code location: ${srcdir}
  39. C Compiler: ${CC}
  40. C Compiler flags: ${CFLAGS}
  41. C++ Compiler: ${CXX}
  42. C++ Compiler flags: ${CXXFLAGS}
  43. Unicode version: ${UCD_VERSION}
  44. ])