From ff4bfa84f1ef56af727373326366c6836677f934 Mon Sep 17 00:00:00 2001 From: nveid Date: Thu, 5 Apr 2007 03:39:09 +0000 Subject: [PATCH] @config compile now reports if SQL support is built in or not (cherry picked from commit 7d3d643461def4d32ffbfe96c4197da7d157cef4) --- game/txt/changes/0.73 | 1 + src/conf.c | 3 +++ 2 files changed, 4 insertions(+) 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.")); -- 2.30.2