forked from Mirrors/freeswitch
FreeTDM: Fix private/libteletone*.h includes
libteletone headers include each other, use #include "" to look in the local dir rather than the include search path. Unbreaking all of my (still) external FreeTDM projects. Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
This commit is contained in:
parent
836804707a
commit
975ac0ac70
@ -136,8 +136,8 @@ typedef __int16 int16_t;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <libteletone_generate.h>
|
||||
#include <libteletone_detect.h>
|
||||
#include "libteletone_generate.h"
|
||||
#include "libteletone_detect.h"
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
|
@ -96,7 +96,7 @@
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include <libteletone.h>
|
||||
#include "libteletone.h"
|
||||
|
||||
/*! \file libteletone_detect.h
|
||||
\brief Tone Detection Routines
|
||||
|
@ -116,7 +116,7 @@ extern float powf (float, float);
|
||||
#endif
|
||||
#include <assert.h>
|
||||
#include <stdarg.h>
|
||||
#include <libteletone.h>
|
||||
#include "libteletone.h"
|
||||
|
||||
#define TELETONE_VOL_DB_MAX 0
|
||||
#define TELETONE_VOL_DB_MIN -63
|
||||
|
Loading…
Reference in New Issue
Block a user