removed fontforge git version as it is not a stable representation of 20200314 version

This commit is contained in:
Stephen Gaito 2020-05-30 06:59:21 +00:00
parent 7b5780ea83
commit 930915df34
4 changed files with 0 additions and 5 deletions

View File

@ -64,7 +64,6 @@ void show_version_and_exit(const char * dummy = nullptr)
cerr << "Libraries: " << endl;
cerr << " poppler " << POPPLER_VERSION << endl;
cerr << " libfontforge (date) " << ffwVersionInfo->versionDate << endl;
cerr << " libfontforge (git) " << ffwVersionInfo->gitVersion << endl;
#if ENABLE_SVG
cerr << " cairo " << cairo_version_string() << endl;
#endif

View File

@ -158,7 +158,6 @@ void setupSignalHandler(
detailInfo = detailInfo + "Libraries:\n" ;
detailInfo = detailInfo + " poppler " + POPPLER_VERSION + "\n";
detailInfo = detailInfo + " libfontforge (date) " + ffwVersionInfo->versionDate + "\n";
detailInfo = detailInfo + " libfontforge (git) " + ffwVersionInfo->gitVersion + "\n";
#if ENABLE_SVG
detailInfo = detailInfo + " cairo " + cairo_version_string() + "\n";
#endif

View File

@ -20,7 +20,6 @@
#include "ffw.h" // needed for:
#include "gfile.h" // FindProgDir
#include "fontforge-version-extras.h" // FONTFORGE_GIT_VERSION
#include "fontforge/autowidth.h" // FVRemoveKerns
#include "fontforge/bitmapchar.h" // SFReplaceEncodingBDFProps
#include "fontforge/cvimages.h" // FVImportImages
@ -127,7 +126,6 @@ static FFWVersionInfo ffwVersionInfo;
const FFWVersionInfo* ffw_get_version_info(void)
{
ffwVersionInfo.gitVersion = FONTFORGE_GIT_VERSION;
ffwVersionInfo.versionDate = FONTFORGE_VERSION;
return &ffwVersionInfo;

View File

@ -25,7 +25,6 @@ void ffw_init(const char* progPath, int debug);
void ffw_finalize(void);
typedef struct ffw_version_info {
const char* gitVersion;
const char* versionDate;
} FFWVersionInfo ;