diff options
author | Adam <Adam@anope.org> | 2010-10-30 19:41:13 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-30 19:41:13 -0400 |
commit | fb9f41b3e52cfddada7773a65b9723cd3a96b785 (patch) | |
tree | bd97f21b4a5098d43f2a680ae09136f3e0ef6bb5 /docs/WIN32.txt | |
parent | a7e5d51616363214d391500b2d9d647379fba833 (diff) |
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.
Diffstat (limited to 'docs/WIN32.txt')
-rw-r--r-- | docs/WIN32.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/WIN32.txt b/docs/WIN32.txt index 8deb843ea..37abf16f5 100644 --- a/docs/WIN32.txt +++ b/docs/WIN32.txt @@ -91,6 +91,23 @@ Anope for Windows If you cannot find whats causing the error, please visit our forums or
our IRC Support channel for assistance.
+ Some Anope modules require third party libraries, such as m_mysql and
+ m_ssl. If these libraries are installed in nonstandard locations, cmake
+ will probably not find them and should be told where they are by passing
+ additional search paths to the last question in Config, such as:
+
+ -DEXTRA_INCLUDES:STRING=c:/openssl/include;c:/openssl/lib
+
+ Which would have cmake search both C:\openssl\include and
+ C:\openssl\lib.
+
+ Building Anope with gettext requires libintl, libiconv, libgcc and
+ libmingex. We have precompiled these libraries for you that you may
+ use if you want, they are avaiable at http://someurlwhichidonthaveXXX.
+ The OpenSSL and MySQL header files and libraries are also included in
+ this package. Once downloaded and extracted, you should pass the include,
+ bin, and lib paths to cmake as seen above.
+
5) You are now ready to compile. If you said you wanted to use NMake in step 4,
at the prompt type:
|