From: nveid <nveid@cobramush.org>
Date: Thu, 5 Apr 2007 03:39:09 +0000 (+0000)
Subject: @config compile now reports if SQL support is built in or not
X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=ff4bfa84f1ef56af727373326366c6836677f934;p=cobramush.git

@config compile now reports if SQL support is built in or not
(cherry picked from commit 7d3d643461def4d32ffbfe96c4197da7d157cef4)
---

diff --git a/game/txt/changes/0.73 b/game/txt/changes/0.73
index c466724..4fa6b87 100644
--- a/game/txt/changes/0.73
+++ b/game/txt/changes/0.73
@@ -167,4 +167,5 @@ CobraMUSH Version 0.73
      you #-1 [AEJ]
    * Improved messages for @link of exits [AEJ]
    * Fixed initialization of attribute flags [AEJ]
+   * SQL support is now reported via @config compile. [RLB]
 
diff --git a/src/conf.c b/src/conf.c
index 53bbd97..be216e1 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -1638,6 +1638,9 @@ show_compile_options(dbref player)
 #ifdef HAS_OPENSSL
   notify(player, T(" The MUSH was compiled with SSL support."));
 #endif
+#ifdef HAS_MYSQL
+  notify(player, T(" The MUSH was compiled with SQL support."));
+#endif
 
 #ifdef INFO_SLAVE
   notify(player, T(" DNS and ident lookups are handled by a slave process."));