[svn-commits] dhubbard: branch dhubbard/res_fax_spandsp r203187 - /team/dhubbard/res_fax_sp...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jun 25 11:47:36 CDT 2009


Author: dhubbard
Date: Thu Jun 25 11:47:32 2009
New Revision: 203187

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=203187
Log:
remove PRODUCT_VERSION

Modified:
    team/dhubbard/res_fax_spandsp/res/res_fax.c

Modified: team/dhubbard/res_fax_spandsp/res/res_fax.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/dhubbard/res_fax_spandsp/res/res_fax.c?view=diff&rev=203187&r1=203186&r2=203187
==============================================================================
--- team/dhubbard/res_fax_spandsp/res/res_fax.c (original)
+++ team/dhubbard/res_fax_spandsp/res/res_fax.c Thu Jun 25 11:47:32 2009
@@ -57,11 +57,6 @@
 #include <asterisk/channel.h>
 #include <asterisk/pbx.h>
 #include <asterisk/manager.h>
-
-//#include "version.h"
-#ifndef PRODUCT_VERSION
-#define PRODUCT_VERSION "$Revision$"
-#endif
 
 static const char app_receivefax[] = "ReceiveFAX";
 static const char synopsis_receivefax[] = "Receive a FAX and save as a TIFF/F file.";
@@ -1267,7 +1262,6 @@
 	}
 
 	ast_cli(a->fd, "Fax For Asterisk Components:\n");
-	ast_cli(a->fd, "\tApplications: " PRODUCT_VERSION "\n");
 	AST_RWLIST_RDLOCK(&faxmodules);
 	AST_RWLIST_TRAVERSE(&faxmodules, fax, list) {
 		ast_cli(a->fd, "\t%s: %s\n", fax->tech->description, fax->tech->version);
@@ -1696,8 +1690,6 @@
 {
 	int res;
 
-	ast_log(LOG_NOTICE, "Generic FAX application module version " PRODUCT_VERSION ", Copyright (C) 2008-2009 Digium, Inc.\n");
-
 	/* initialize the registry */
 	faxregistry.active_sessions = 0;
 	if (!(faxregistry.container = ao2_container_alloc(DGMFAX_MAXBUCKETS, session_hash_cb, session_cmp_cb))) {




More information about the svn-commits mailing list