svn_version handling dummy for MSVC (I'll deal with MSVC later).

This commit is contained in:
Robin Mills 2014-07-02 14:33:30 +00:00
parent b6db775109
commit 501fadcdd6
2 changed files with 6 additions and 1 deletions

View File

@ -13,5 +13,5 @@ if [ ! -e svn_version.h ]; then
echo "#define SVN_VERSION $svn_version" > svn_version.h
fi
# That's All Folks!
# That's all Folks!
##

View File

@ -37,7 +37,12 @@
// + standard includes
#include <string>
// svn version has not been implemented yet for DevStudio
#if defined(_MSC_VER)
#define SVN_VERSION 0
#else
#include "svn_version.h"
#endif
/*!
@brief %Exiv2 MAJOR version number of the library used at compile-time.