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.

config.h 587B

123456789101112
  1. // The Visual C++ C Runtime deprecates several standard library functions in
  2. // preference for _s variants that are specific to Visual C++. This removes
  3. // those deprecation warnings.
  4. #define _CRT_SECURE_NO_WARNINGS
  5. // The Visual C++ C Runtime deprecates standard POSIX APIs that conflict with
  6. // reserved ISO C names (like strdup) in favour of non-portable conforming
  7. // variants that start with an '_'. This removes those deprecation warnings.
  8. #define _CRT_NONSTDC_NO_DEPRECATE
  9. // This is created by autoconf on POSIX-compatibe build environments.
  10. #define PACKAGE_VERSION "1.51-dev"