From 3b3d2652fc3e95670abc73d5bc5d10fc5a6c9825 Mon Sep 17 00:00:00 2001 From: Francis ANDRE Date: Mon, 7 May 2018 20:32:32 +0200 Subject: [PATCH] Remove POCO_LIB_SUFFIX since PostgreSQL does not provide a debug libpq library --- 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 8bfe12357..b533c9f67 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" POCO_LIB_SUFFIX) + #pragma comment(lib, "libmysql") #endif diff --git a/Data/PostgreSQL/include/Poco/Data/PostgreSQL/PostgreSQL.h b/Data/PostgreSQL/include/Poco/Data/PostgreSQL/PostgreSQL.h index 88470807c..f722aff4e 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" POCO_LIB_SUFFIX) + #pragma comment(lib, "libpq") #endif