summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-10-30 19:41:13 -0400
committerAdam <Adam@anope.org>2010-10-30 19:41:13 -0400
commitfb9f41b3e52cfddada7773a65b9723cd3a96b785 (patch)
treebd97f21b4a5098d43f2a680ae09136f3e0ef6bb5 /data
parenta7e5d51616363214d391500b2d9d647379fba833 (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 'data')
-rw-r--r--data/example.conf17
1 files changed, 17 insertions, 0 deletions
diff --git a/data/example.conf b/data/example.conf
index 08e79d9f8..5439be554 100644
--- a/data/example.conf
+++ b/data/example.conf
@@ -1640,6 +1640,23 @@ module { name = "ns_maxemail" }
module { name = "m_ssl" }
/*
+ * m_mysql
+ *
+ * This module allows other modules (db_mysql) to use MySQL.
+ * Be sure you have imported the table schema with mydbgen before
+ * trying to use MySQL
+ */
+#module { name = "m_mysql" }
+mysql
+{
+ database = "anope";
+ server = "127.0.0.1";
+ username = "anope";
+ password = "mypassword";
+ port = 3306;
+}
+
+/*
* db_plain
*
* This is the default flatfile database format