@config compile now reports if SQL support is built in or not
authornveid <nveid@cobramush.org>
Thu, 5 Apr 2007 03:39:09 +0000 (03:39 +0000)
committernveid <nveid@cobramush.org>
Thu, 5 Apr 2007 03:39:09 +0000 (03:39 +0000)
game/txt/changes/0.73
src/conf.c

index c46672481295be26b5f1e233d146c38a30422dc7..4fa6b87f7fa5cc09e72affdac69113b3568b556d 100644 (file)
@@ -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]
 
index 53bbd972b43bca05063c44fd16dcf68549a34527..be216e1eb39fa35f837e8d808c8d855026ce22fd 100644 (file)
@@ -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."));