From 0ff6217227ce551d6c91524c8e7fd37352e20490 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Sun, 19 Oct 2025 19:17:37 -0300 Subject: add include path for PostgreSQL + overall cleanup Some distributions place libpq headers under /usr/include/postgresql which is why it's added to the include path. And even though we don't support it yet, the same happens with MariaDB, with headers being placed under /usr/include/mariadb. --- config.cfg.dist | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'config.cfg.dist') diff --git a/config.cfg.dist b/config.cfg.dist index 26f7a21..3d5c685 100644 --- a/config.cfg.dist +++ b/config.cfg.dist @@ -22,14 +22,14 @@ PostgreSQL.SSLMode = "" PostgreSQL.SSLRootCert = "" PostgreSQL.MaxCachedStatements = 100 -# MySQL/MariaDB Config -MySQL.Host = "localhost" -MySQL.Port = "3306" -MySQL.DBName = "tibia" -MySQL.User = "tibia" -MySQL.Password = "" -MySQL.UnixSocket = "" -MySQL.MaxCachedStatements = 100 +# MariaDB Config +MariaDB.Host = "localhost" +MariaDB.Port = "3306" +MariaDB.DBName = "tibia" +MariaDB.User = "tibia" +MariaDB.Password = "" +MariaDB.UnixSocket = "" +MariaDB.MaxCachedStatements = 100 # Connection Config QueryManagerPort = 7173 -- cgit v1.2.3