GH 42: Linux unbundled builds don't link

GH #42: Linux unbundled builds don't link
This commit is contained in:
Alex 2012-12-26 23:23:15 -06:00
parent 3ace867b6d
commit 79838aa76d
3 changed files with 10 additions and 0 deletions

View File

@ -33,6 +33,8 @@ Release 1.5.1 (2012-12-25)
- added SQLite::Utility::isThreadSafe() function - added SQLite::Utility::isThreadSafe() function
- added SQLite::Utility::setThreadMode(int mode) function - added SQLite::Utility::setThreadMode(int mode) function
- fixed GH #41: Buffer::resize crash - fixed GH #41: Buffer::resize crash
- fixed GH #42: Linux unbundled builds don't link
- fixed GH #44: Problems with win x64 build
Release 1.5.0 (2012-10-14) Release 1.5.0 (2012-10-14)

View File

@ -10,6 +10,10 @@ include $(POCO_BASE)/build/rules/global
objects = File2Page objects = File2Page
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif
target = f2cpsp target = f2cpsp
target_version = 1 target_version = 1
target_libs = PocoUtil PocoXML PocoFoundation target_libs = PocoUtil PocoXML PocoFoundation

View File

@ -12,6 +12,10 @@ objects = Page PageReader \
CodeWriter ApacheCodeWriter OSPCodeWriter \ CodeWriter ApacheCodeWriter OSPCodeWriter \
PageCompiler PageCompiler
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif
target = cpspc target = cpspc
target_version = 1 target_version = 1
target_libs = PocoNet PocoUtil PocoXML PocoFoundation target_libs = PocoNet PocoUtil PocoXML PocoFoundation