1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 17:56:37 +02:00

Fixed building anopesmtp on Windows, fixed some cmake problems with calculate_depends, and fixed building without gettext

This commit is contained in:
Adam
2010-11-01 16:07:18 -04:00
parent 9db85375ee
commit 3edc6d70b9
6 changed files with 14 additions and 15 deletions
+2 -3
View File
@@ -112,9 +112,9 @@ const Anope::string GetString(const char *domain, Anope::string language, const
return translated;
}
#else
const Anope::string GetString(const char *domain, const Anope::string &language, const Anope::string &string)
const Anope::string GetString(const char *domain, Anope::string language, const Anope::string &string)
{
return language_strings[string];
return string;
}
#endif
@@ -4671,7 +4671,6 @@ Anope::string language_strings[LANG_STRING_COUNT] = {
"Sets various global Services options. Option names\n"
"currently defined are:\n"
" READONLY Set read-only or read-write mode\n"
" LOGCHAN Report log messages to a channel\n"
" DEBUG Activate or deactivate debug mode\n"
" NOEXPIRE Activate or deactivate no expire mode\n"
" SUPERADMIN Activate or deactivate super-admin mode\n"