mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
Merge pull request #917 from zosrothko/develop
additionnal fixes for the Cygwin platform
This commit is contained in:
@@ -242,8 +242,8 @@
|
||||
#define POCO_COMPILER_CBUILDER
|
||||
#elif defined (__DMC__)
|
||||
#define POCO_COMPILER_DMARS
|
||||
#elif defined (__HP_aCC)
|
||||
#define POCO_COMPILER_HP_ACC
|
||||
#elif defined (__DECCXX)
|
||||
#define POCO_COMPILER_COMPAC
|
||||
#elif (defined (__xlc__) || defined (__xlC__)) && defined(__IBMCPP__)
|
||||
#define POCO_COMPILER_IBM_XLC // IBM XL C++
|
||||
#elif defined (__IBMCPP__) && defined(__COMPILER_VER__)
|
||||
|
||||
@@ -118,6 +118,12 @@ public:
|
||||
/// specified in a call to load() or the
|
||||
/// constructor.
|
||||
|
||||
static std::string prefix();
|
||||
/// Returns the platform-specific filename prefix
|
||||
/// for shared libraries.
|
||||
/// Most platforms would return an empty string, but
|
||||
/// on Cygwin, the "cyg" prefix will be returned.
|
||||
|
||||
static std::string suffix();
|
||||
/// Returns the platform-specific filename suffix
|
||||
/// for shared libraries (including the period).
|
||||
|
||||
@@ -38,6 +38,7 @@ protected:
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
const std::string& getPathImpl() const;
|
||||
static std::string prefixImpl();
|
||||
static std::string suffixImpl();
|
||||
|
||||
private:
|
||||
|
||||
@@ -43,6 +43,7 @@ protected:
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
const std::string& getPathImpl() const;
|
||||
static std::string prefixImpl();
|
||||
static std::string suffixImpl();
|
||||
|
||||
private:
|
||||
|
||||
@@ -37,6 +37,7 @@ protected:
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
const std::string& getPathImpl() const;
|
||||
static std::string prefixImpl();
|
||||
static std::string suffixImpl();
|
||||
|
||||
private:
|
||||
|
||||
@@ -38,6 +38,7 @@ protected:
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
const std::string& getPathImpl() const;
|
||||
static std::string prefixImpl();
|
||||
static std::string suffixImpl();
|
||||
|
||||
private:
|
||||
|
||||
@@ -37,6 +37,7 @@ protected:
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
const std::string& getPathImpl() const;
|
||||
static std::string prefixImpl();
|
||||
static std::string suffixImpl();
|
||||
|
||||
private:
|
||||
|
||||
@@ -37,6 +37,7 @@ protected:
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
const std::string& getPathImpl() const;
|
||||
static std::string prefixImpl();
|
||||
static std::string suffixImpl();
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user