Skip to content

Commit

Permalink
#593 Poco 1.5.0 on FreeBSD: cannot find -ldl
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed Dec 12, 2012
1 parent ccd6635 commit 7529891
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -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)
==========================
Expand Down
5 changes: 4 additions & 1 deletion Data/ODBC/testsuite/Makefile
Expand Up @@ -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 \
Expand Down

0 comments on commit 7529891

Please sign in to comment.