mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-05 04:43:44 +00:00
Define LLONG_MAX on systems that do not have it.
(closes issue #17644) Reported by: pprindeville git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@276769 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -369,6 +369,9 @@
|
||||
/* Define to 1 if your system has linux/compiler.h. */
|
||||
#undef HAVE_LINUX_COMPILER_H
|
||||
|
||||
/* Define to 1 if limits.h includes a LLONG_MAX definition. */
|
||||
#undef HAVE_LLONG_MAX
|
||||
|
||||
/* Define to 1 if you have the <locale.h> header file. */
|
||||
#undef HAVE_LOCALE_H
|
||||
|
||||
|
||||
@@ -73,6 +73,10 @@
|
||||
#include "asterisk/poll-compat.h"
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_LLONG_MAX
|
||||
#define LLONG_MAX 9223372036854775807LL
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_CLOSEFROM
|
||||
void closefrom(int lowfd);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user