shithub: flite

Download patch

ref: b49bcc931c3e2e4d021f250986471f60e7d33875
parent: 8061b6e9a0021f9cbc7733b7d704edeebff0f749
author: Samuel Thibault <samuel.thibault@ens-lyon.org>
date: Wed Aug 26 21:04:12 EDT 2020

doc: fix include in example

flite.h gets installed in $prefix/include/flite/flite.h, so applications
need to include <flite/flite.h>, not "flite.h".

--- a/doc/flite.texi
+++ b/doc/flite.texi
@@ -812,7 +812,7 @@
 
 Here is a simple C program that uses the flite library
 @example
-#include "flite.h"
+#include <flite/flite.h>
 
 cst_voice * register_cmu_us_kal(const char *voxdir);