GITHUB_PLUGIN now works and can be used under Linux immediately.

Other platforms to follow as volunteers test support and get openssl in 
place.
This commit is contained in:
Dick Hollenbeck
2013-09-21 22:57:40 -05:00
parent 0a3e76a74d
commit 153aee8eda
3 changed files with 12 additions and 6 deletions
+3 -3
View File
@@ -61,10 +61,10 @@ typedef MODULE_MAP::const_iterator MODULE_CITER;
/**
* Class FPL_CACHE
* Class GH_CACHE
* assists only within GITHUB_PLUGIN and hold a map of footprint name to wxZipEntry
*/
struct FPL_CACHE : public MODULE_MAP
struct GH_CACHE : public MODULE_MAP
{
// MODULE_MAP is a boost::ptr_map template, made into a class hereby.
};
@@ -157,7 +157,7 @@ void GITHUB_PLUGIN::cacheLib( const wxString& aLibraryPath ) throw( IO_ERROR )
if( !m_cache || m_lib_path != aLibraryPath )
{
delete m_cache;
m_cache = new FPL_CACHE();
m_cache = new GH_CACHE();
remote_get_zip( aLibraryPath );
m_lib_path = aLibraryPath;