Alpha file support removed.

This commit is contained in:
Andrey Kiselev 2003-10-09 08:38:18 +00:00
parent 9a46168ff1
commit d234e74582

View File

@ -1,4 +1,4 @@
/* "$Header: /cvs/maptools/cvsroot/libtiff/libtiff/Attic/mkversion.c,v 1.5 2003-05-11 19:55:06 dron Exp $ */ /* "$Header: /cvs/maptools/cvsroot/libtiff/libtiff/Attic/mkversion.c,v 1.6 2003-10-09 08:38:18 dron Exp $ */
/* /*
* Copyright (c) 1995-1997 Sam Leffler * Copyright (c) 1995-1997 Sam Leffler
@ -31,7 +31,7 @@
* *
* This was written by Peter Greenham for Acorn systems. * This was written by Peter Greenham for Acorn systems.
* *
* Syntax: mkversion [-v version-file] [-a alpha-file] [<outfile>] * Syntax: mkversion [-v version-file] [<outfile>]
*/ */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
@ -41,7 +41,7 @@ static void
usage(void) usage(void)
{ {
fprintf(stderr, fprintf(stderr,
"usage: mkversion [-v version-file] [-a alpha-file]\n" "usage: mkversion [-v version-file]\n"
" [-r releasedate-file] [outfile]\n"); " [-r releasedate-file] [outfile]\n");
exit(-1); exit(-1);
} }
@ -63,11 +63,9 @@ main(int argc, char* argv[])
{ {
char* versionFile = "../VERSION"; char* versionFile = "../VERSION";
char* releaseDateFile = "../RELEASE-DATE"; char* releaseDateFile = "../RELEASE-DATE";
char* alphaFile = "../dist/tiff.alpha";
char version[128]; char version[128];
char rawReleaseDate[128]; char rawReleaseDate[128];
char tiffLibVersion[128]; char tiffLibVersion[128];
char alpha[128];
FILE* fd; FILE* fd;
char* cp; char* cp;
@ -78,11 +76,6 @@ main(int argc, char* argv[])
usage(); usage();
argc--, argv++; argc--, argv++;
versionFile = argv[0]; versionFile = argv[0];
} else if (strcmp(argv[0], "-a") == 0) {
if (argc < 1)
usage();
argc--, argv++;
alphaFile = argv[0];
} else if (strcmp(argv[0], "-r") == 0) { } else if (strcmp(argv[0], "-r") == 0) {
if (argc < 1) if (argc < 1)
usage(); usage();
@ -106,26 +99,6 @@ main(int argc, char* argv[])
if (cp) if (cp)
*cp = '\0'; *cp = '\0';
fclose(fd); fclose(fd);
fd = openFile(alphaFile);
if (fgets(alpha, sizeof (alpha)-1, fd) == NULL) {
fprintf(stderr, "mkversion: No alpha information in %s.\n", alphaFile);
exit(-1);
}
fclose(fd);
cp = strchr(alpha, ' '); /* skip to 3rd blank-separated field */
if (cp)
cp = strchr(cp+1, ' ');
if (cp) { /* append alpha to version */
char* tp;
for (tp = strchr(version, '\0'), cp++; (*tp = *cp) != 0; tp++, cp++)
;
if (tp[-1] == '\n')
tp[-1] = '\0';
} else {
fprintf(stderr, "mkversion: Malformed alpha information in %s.\n",
alphaFile);
exit(-1);
}
/* /*
* Read the RELEASE-DATE, and translate format to emit TIFFLIB_VERSION. * Read the RELEASE-DATE, and translate format to emit TIFFLIB_VERSION.