summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDwayne M. Hubbard <dwayne.hubbard@gmail.com>2007-04-11 21:13:44 +0000
committerDwayne M. Hubbard <dwayne.hubbard@gmail.com>2007-04-11 21:13:44 +0000
commit2151e532fe8ba8e14844de54a47a5eb5ad13e2a6 (patch)
tree5988bccc4d26966e132b33f82dfd9dc3874468d3 /include
parent6a5f3599bb7a75c00e82e831501d7e001e1f30a0 (diff)
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
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/options.h b/include/asterisk/options.h
index d52b710c2..f94cf6e0e 100644
--- a/include/asterisk/options.h
+++ b/include/asterisk/options.h
@@ -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[];