Add charset to version info

This commit is contained in:
Alexey Sokolov
2014-01-25 13:49:22 +00:00
parent cfc1227171
commit 366158d907
4 changed files with 21 additions and 0 deletions
+7
View File
@@ -210,6 +210,13 @@ inline bool HaveSSL_() {
return false;
}
inline bool HaveCharset_() {
#ifdef HAVE_ICU
return true;
#endif
return false;
}
inline int GetSOMAXCONN() {
return SOMAXCONN;
}
+1
View File
@@ -653,6 +653,7 @@ UNLOAD = CModule.UNLOAD
HaveSSL = HaveSSL_()
HaveIPv6 = HaveIPv6_()
HaveCharset = HaveCharset_()
Version = GetVersion()
VersionMajor = GetVersionMajor()
VersionMinor = GetVersionMinor()