dect
/
asterisk
Archived
13
0
Fork 0

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: http://svn.digium.com/svn/asterisk/trunk@271833 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2010-06-22 16:17:14 +00:00
parent c1afb692bc
commit 8be09a0397
1 changed files with 2 additions and 3 deletions

View File

@ -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);