aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/options.h
diff options
context:
space:
mode:
authordhubbard <dhubbard@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-11 21:13:44 +0000
committerdhubbard <dhubbard@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-11 21:13:44 +0000
commit35b687d5dc4187e01afc6db9f44439ca11b8cfb0 (patch)
tree5988bccc4d26966e132b33f82dfd9dc3874468d3 /include/asterisk/options.h
parent6c0a5da964f865787f36e8ea446cab27d0a14710 (diff)
changed #if HAVE_SYSINFO to #if defined(HAVE_SYSINFO)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@61576 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/options.h')
-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[];