mirror of
https://github.com/anope/anope.git
synced 2026-06-29 23:56:39 +02:00
Made gettext work on most OSs. Tested on Debian, FreeBSD, Gentoo, and Windows.
Added a search path option to the Config script for cmake to use when finding libraries for modules or for gettext. Fixed m_mysql and m_ssl to work under Windows, made the Windows Config program remember the last used options, and fixed Windows release builds.
This commit is contained in:
@@ -17,7 +17,7 @@ class Thread;
|
||||
|
||||
extern CoreExport ThreadEngine threadEngine;
|
||||
|
||||
class ThreadEngine
|
||||
class CoreExport ThreadEngine
|
||||
{
|
||||
public:
|
||||
/* Vector of threads */
|
||||
@@ -41,7 +41,7 @@ class ThreadEngine
|
||||
void Process();
|
||||
};
|
||||
|
||||
class Thread : public Extensible
|
||||
class CoreExport Thread : public Extensible
|
||||
{
|
||||
private:
|
||||
/* Set to true to tell the thread to finish and we are waiting for it */
|
||||
@@ -77,7 +77,7 @@ class Thread : public Extensible
|
||||
virtual void Run();
|
||||
};
|
||||
|
||||
class Mutex
|
||||
class CoreExport Mutex
|
||||
{
|
||||
protected:
|
||||
/* A mutex, used to keep threads in sync */
|
||||
@@ -101,7 +101,7 @@ class Mutex
|
||||
void Unlock();
|
||||
};
|
||||
|
||||
class Condition : public Mutex
|
||||
class CoreExport Condition : public Mutex
|
||||
{
|
||||
private:
|
||||
/* A condition */
|
||||
|
||||
Reference in New Issue
Block a user