Change software version from hardcoded value to getting it from the configuration.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@269 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Eric Weddington 2003-03-06 19:18:40 +00:00
parent 3af706d675
commit 5d88da5ff1
1 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,8 @@
#include "term.h"
char * version = "3.1.0";
/* Get VERSION from ac_cfg.h */
char * version = VERSION;
int verbose; /* verbose output */
char * progname;