#593 Poco 1.5.0 on FreeBSD: cannot find -ldl
This commit is contained in:
Родитель
ccd66358b9
Коммит
7529891713
|
@ -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 \
|
||||
|
|
Загрузка…
Ссылка в новой задаче