From a5951c779546c4f3fed1cb8713a2ee7efd586e14 Mon Sep 17 00:00:00 2001 From: Francis ANDRE Date: Mon, 7 May 2018 20:29:41 +0200 Subject: [PATCH] Add POCO_LIB_SUFFIX to the #pragma link library name --- Data/MySQL/include/Poco/Data/MySQL/MySQL.h | 2 +- Data/PostgreSQL/include/Poco/Data/PostgreSQL/PostgreSQL.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/MySQL/include/Poco/Data/MySQL/MySQL.h b/Data/MySQL/include/Poco/Data/MySQL/MySQL.h index b533c9f67..8bfe12357 100644 --- a/Data/MySQL/include/Poco/Data/MySQL/MySQL.h +++ b/Data/MySQL/include/Poco/Data/MySQL/MySQL.h @@ -54,7 +54,7 @@ #if !defined(MySQL_EXPORTS) #pragma comment(lib, "PocoDataMySQL" POCO_LIB_SUFFIX) #endif - #pragma comment(lib, "libmysql") + #pragma comment(lib, "libmysql" POCO_LIB_SUFFIX) #endif diff --git a/Data/PostgreSQL/include/Poco/Data/PostgreSQL/PostgreSQL.h b/Data/PostgreSQL/include/Poco/Data/PostgreSQL/PostgreSQL.h index f722aff4e..88470807c 100644 --- a/Data/PostgreSQL/include/Poco/Data/PostgreSQL/PostgreSQL.h +++ b/Data/PostgreSQL/include/Poco/Data/PostgreSQL/PostgreSQL.h @@ -54,7 +54,7 @@ #if !defined(PostgreSQL_EXPORTS) #pragma comment(lib, "PocoDataPostgreSQL" POCO_LIB_SUFFIX) #endif - #pragma comment(lib, "libpq") + #pragma comment(lib, "libpq" POCO_LIB_SUFFIX) #endif