mirror of
https://github.com/anope/anope.git
synced 2026-06-30 19:46: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:
@@ -1429,7 +1429,7 @@ static void SaveDatabases()
|
||||
|
||||
for (std::vector<Anope::string>::iterator it = nc->access.begin(), it_end = nc->access.end(); it != it_end; ++it)
|
||||
{
|
||||
me->RunQuery("INSERT INTO `anope_ns_access` (display, access) VALUES(" + me->Escape(nc->display) + ", " + me->Escape(*it) + ")");
|
||||
me->RunQuery("INSERT INTO `anope_ns_access` (display, access) VALUES('" + me->Escape(nc->display) + "', '" + me->Escape(*it) + "')");
|
||||
}
|
||||
|
||||
for (unsigned j = 0, end = nc->memos.memos.size(); j < end; ++j)
|
||||
|
||||
Reference in New Issue
Block a user