Have configure build version string instead of relying on ANSI string

concatentation.
This commit is contained in:
Jesse Thilo
1999-06-14 22:22:25 +00:00
parent 2411ba6bea
commit 6ed6122606
6 changed files with 7 additions and 12 deletions

View File

@@ -39,7 +39,6 @@ void usage PARAMS((FILE *));
void getargs PARAMS((int, char *[]));
extern char *program_name;
extern char *version_string;
extern void warns PARAMS((char *, char *)); /* main.c */
@@ -108,7 +107,7 @@ getargs (int argc, char *argv[])
exit (0);
case 'V':
printf ("%s", version_string);
printf ("%s\n", VERSION_STRING);
exit (0);
case 'v':