aboutsummaryrefslogtreecommitdiffstats
path: root/asterisk.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-07 16:07:06 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-07 16:07:06 +0000
commit1367784f24d573f32d4306cd7538926b4a6c7fa5 (patch)
treefcae9a796fc99d87f7efd952d417a06b2ae3eef1 /asterisk.c
parent9b81c82a2f76a14e989b45ecce399f23b8377c39 (diff)
fix version-string builds for non-gcc compilers
don't build version-string stuff for LOW_MEMORY builds git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5873 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'asterisk.c')
-rwxr-xr-xasterisk.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/asterisk.c b/asterisk.c
index 52992fc7c..e3daa1feb 100755
--- a/asterisk.c
+++ b/asterisk.c
@@ -152,6 +152,7 @@ static int shuttingdown = 0;
static int restartnow = 0;
static pthread_t consolethread = AST_PTHREADT_NULL;
+#if !defined(LOW_MEMORY)
struct file_version {
AST_LIST_ENTRY(file_version) list;
const char *file;
@@ -277,6 +278,7 @@ static char *complete_show_version_files(char *line, char *word, int pos, int st
return ret;
}
+#endif /* ! LOW_MEMORY */
int ast_register_atexit(void (*func)(void))
{
@@ -1067,8 +1069,10 @@ static struct ast_cli_entry core_cli[] = {
"Restart Asterisk at empty call volume", restart_when_convenient_help },
{ { "!", NULL }, handle_bang,
"Execute a shell command", bang_help },
+#if !defined(LOW_MEMORY)
{ { "show", "version", "files", NULL }, handle_show_version_files,
"Show versions of files used to build Asterisk", show_version_files_help, complete_show_version_files },
+#endif /* ! LOW_MEMORY */
};
static int ast_el_read_char(EditLine *el, char *cp)