Something's really wrong in here... the autorevision.h file created doesn't post any date! :-/ Just the revision number.
/*1893*/
#ifndef AUTOREVISION_H
#define AUTOREVISION_H
#include <wx/string.h>
#define SVN_REVISION "1893"
namespace autorevision
{
const unsigned int svn_revision = 1893;
const wxString svnRevision(_T("1893"));
}
#endif
You do realize that is the reverse of the correct SVN number, right?
Correct 3981
Yours 1893
Tim S
Paste this in the file include/autorevision.h it works till your SVN is fixed.
Note, you may have to write protect it.
/*0*/
#ifndef AUTOREVISION_H
#define AUTOREVISION_H
#define SVN_REVISION "0"
#define SVN_DATE "1980-01-01T00:00:00.00 0000Z"
namespace autorevision
{
const unsigned int svn_revision = 0;
}
#endif