changed #if HAVE_SYSINFO to #if defined(HAVE_SYSINFO)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@61576 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Dwayne M. Hubbard
2007-04-11 21:13:44 +00:00
parent 6a5f3599bb
commit 2151e532fe
3 changed files with 11 additions and 11 deletions

View File

@@ -113,7 +113,7 @@ extern int option_verbose;
extern int option_debug; /*!< Debugging */
extern int option_maxcalls; /*!< Maximum number of simultaneous channels */
extern double option_maxload;
#if HAVE_SYSINFO
#if defined(HAVE_SYSINFO)
extern long option_minmemfree; /*!< Minimum amount of free system memory - stop accepting calls if free memory falls below this watermark */
#endif
extern char defaultlanguage[];