#593 Poco 1.5.0 on FreeBSD: cannot find -ldl

This commit is contained in:
Alex 2012-12-11 21:25:37 -06:00
Родитель ccd66358b9
Коммит 7529891713
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -17,6 +17,7 @@ Release 1.5.0 (2012-12-17)
- fixed GH #27: Poco::URI::decode() doesn't properly handle '+'
- fixed GH #31: JSON implementation bug
- fixed SF #597: Configure script ignores cflags
- fixed SF #593: Poco 1.5.0 on FreeBSD: cannot find -ldl
Release 1.5.0 (2012-10-14)
==========================

Просмотреть файл

@ -20,7 +20,10 @@ include $(POCO_BASE)/Data/ODBC/ODBC.make
# Note: #
# Do not change linking order or move this line up, these libs have to be linked in this order. #
##################################################################################################
SYSLIBS += -lltdl -ldl
SYSLIBS += -lltdl
ifneq ($(POCO_CONFIG),FreeBSD)
SYSLIBS += -ldl
endif
objects = ODBCTestSuite Driver \
ODBCDB2Test ODBCMySQLTest ODBCOracleTest ODBCPostgreSQLTest \