mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 03:48:02 +00:00
Fix trunk compile.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@274773 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -72,9 +72,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#include <sys/epoll.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PRI
|
||||
#include "sig_pri.h"
|
||||
#endif
|
||||
#if defined(HAVE_PRI)
|
||||
#include "libpri.h"
|
||||
#endif /* defined(HAVE_PRI) */
|
||||
|
||||
struct ast_epoll_data {
|
||||
struct ast_channel *chan;
|
||||
@@ -285,7 +285,7 @@ static void channel_data_add_flags(struct ast_data *tree,
|
||||
|
||||
static const char *callerid_ton2str(int ton)
|
||||
{
|
||||
#ifdef HAVE_PRI
|
||||
#if defined(HAVE_PRI)
|
||||
switch (ton) {
|
||||
case PRI_TON_INTERNATIONAL:
|
||||
return "International Number";
|
||||
@@ -303,7 +303,7 @@ static const char *callerid_ton2str(int ton)
|
||||
default:
|
||||
return "Unknown Number Type";
|
||||
}
|
||||
#endif
|
||||
#endif /* defined(HAVE_PRI) */
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user