Added pegmarkdown to the main project file.

Added revision number to the FeedReader plugin.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5998 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-12-16 21:22:14 +00:00
parent d8e327afcc
commit a3901d2b6b
2 changed files with 21 additions and 2 deletions

View File

@ -2,6 +2,7 @@ TEMPLATE = subdirs
SUBDIRS += \
openpgpsdk/src/openpgpsdk.pro \
supportlibs/pegmarkdown/pegmarkdown.pro \
libbitdht/src/libbitdht.pro \
libretroshare/src/libretroshare.pro \
retroshare-gui/src/retroshare-gui.pro \

View File

@ -44,13 +44,31 @@ extern "C" {
return (void*)p;
}
// This symbol contains the svn revision number grabbed from the executable.
// It will be tested by RS to load the plugin automatically, since it is safe to load plugins
// with same revision numbers, assuming that the revision numbers are up-to-date.
//
#ifdef WIN32
__declspec(dllexport)
#endif
uint32_t RETROSHARE_PLUGIN_revision = SVN_REVISION_NUMBER ;
// This symbol contains the svn revision number grabbed from the executable.
// It will be tested by RS to load the plugin automatically, since it is safe to load plugins
// with same revision numbers, assuming that the revision numbers are up-to-date.
//
#ifdef WIN32
__declspec(dllexport)
#endif
uint32_t RETROSHARE_PLUGIN_api = RS_PLUGIN_API_VERSION ;
}
void FeedReaderPlugin::getPluginVersion(int& major,int& minor,int& svn_rev) const
{
major = 5;
minor = 1;
svn_rev = 4350;
minor = 4;
svn_rev = SVN_REVISION_NUMBER;
}
FeedReaderPlugin::FeedReaderPlugin()