From 9cc7c5557888c3dd17099544d67e36258a728e79 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 22 Jun 2010 16:17:14 +0000 Subject: [PATCH] Change the method of retrieving the Asterisk version string. Using this method makes it so res_fax doesn't have to be rebuilt on every svn update. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@271833 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_fax.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/res/res_fax.c b/res/res_fax.c index daccc7d0ad..bcafa94283 100644 --- a/res/res_fax.c +++ b/res/res_fax.c @@ -57,8 +57,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/manager.h" #include "asterisk/dsp.h" #include "asterisk/indications.h" - -#include "asterisk/version.h" +#include "asterisk/ast_version.h" static const char app_receivefax[] = "ReceiveFAX"; static const char synopsis_receivefax[] = "Receive a FAX and save as a TIFF/F file."; @@ -1770,7 +1769,7 @@ static char *cli_fax_show_version(struct ast_cli_entry *e, int cmd, struct ast_c } ast_cli(a->fd, "FAX For Asterisk Components:\n"); - ast_cli(a->fd, "\tApplications: " ASTERISK_VERSION "\n"); + ast_cli(a->fd, "\tApplications: %s\n", ast_get_version()); AST_RWLIST_RDLOCK(&faxmodules); AST_RWLIST_TRAVERSE(&faxmodules, fax, list) { ast_cli(a->fd, "\t%s: %s\n", fax->tech->description, fax->tech->version);