Merge remote-tracking branch 'origin/unbundled-static-build' into develop

This commit is contained in:
aleks-f 2013-01-05 13:57:36 -06:00
commit 7eb8a7bfd6
32 changed files with 144 additions and 18 deletions

View File

@ -18,6 +18,10 @@ objects = genrsakey
target = genrsakey
target_version = 1
target_libs = PocoCrypto PocoUtil PocoXML PocoFoundation
target_libs = PocoCrypto PocoUtil PocoJSON PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lpcre -lexpat
endif

View File

@ -13,6 +13,9 @@ ifeq ($(POCO_CONFIG),FreeBSD)
SYSLIBS += -lssl -lcrypto -lz
else
SYSLIBS += -lssl -lcrypto -lz -ldl
ifeq ($(POCO_CONFIG),Linux)
SYSLIBS += -lkrb5
endif
endif
objects = CryptoTestSuite Driver \

View File

@ -15,3 +15,8 @@ target_version = 1
target_libs = PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz
endif

View File

@ -15,3 +15,8 @@ target_version = 1
target_libs = PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz
endif

View File

@ -15,3 +15,8 @@ target_version = 1
target_libs = PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lpcre
endif

View File

@ -15,3 +15,8 @@ target_version = 1
target_libs = PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz
endif

View File

@ -46,3 +46,7 @@ target_version = 1
target_libs = PocoFoundation CppUnit
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre
endif

View File

@ -15,3 +15,7 @@ target_version = 1
target_libs = PocoJSON PocoFoundation CppUnit
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lpcre -lexpat
endif

View File

@ -12,6 +12,11 @@ objects = EchoServer
target = EchoServer
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = HTTPFormServer
target = HTTPFormServer
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = HTTPLoadTest
target = HTTPLoadTest
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = HTTPTimeServer
target = HTTPTimeServer
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = Ping
target = Ping
target_version = 1
target_libs = PocoNet PocoUtil PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -15,3 +15,7 @@ target_version = 1
target_libs = PocoNet PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz
endif

View File

@ -12,6 +12,10 @@ objects = TimeServer
target = TimeServer
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = Twitter TweetApp
target = tweet
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = WebSocketServer
target = WebSocketServer
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -33,3 +33,7 @@ target_version = 1
target_libs = PocoNet PocoFoundation CppUnit
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz
endif

View File

@ -19,6 +19,10 @@ objects = HTTPSTimeServer
target = HTTPSTimeServer
target_version = 1
target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoXML PocoFoundation
target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoJSON PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lpcre -lexpat
endif

View File

@ -16,6 +16,6 @@ endif
target = f2cpsp
target_version = 1
target_libs = PocoUtil PocoXML PocoFoundation
target_libs = PocoUtil PocoXML PocoJSON PocoFoundation
include $(POCO_BASE)/build/rules/exec

View File

@ -18,6 +18,6 @@ endif
target = cpspc
target_version = 1
target_libs = PocoNet PocoUtil PocoXML PocoFoundation
target_libs = PocoNet PocoUtil PocoXML PocoJSON PocoFoundation
include $(POCO_BASE)/build/rules/exec

View File

@ -15,10 +15,14 @@ objects = HTTPTimeServerApp TimeHandler
target = HTTPTimeServer
target_version = 1
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif
# Rule for runnning PageCompiler
src/%.cpp: src/%.cpsp
@echo "** Compiling Page" $<

View File

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

View File

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

View File

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

View File

@ -24,3 +24,7 @@ target_version = 1
target_libs = PocoUtil PocoXML PocoJSON PocoFoundation CppUnit
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -15,3 +15,8 @@ target_version = 1
target_libs = PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lexpat
endif

View File

@ -15,3 +15,8 @@ target_version = 1
target_libs = PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lexpat
endif

View File

@ -15,3 +15,7 @@ target_version = 1
target_libs = PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lexpat
endif

View File

@ -19,3 +19,7 @@ target_version = 1
target_libs = PocoXML PocoFoundation CppUnit
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = unzip
target = unzip
target_version = 1
target_libs = PocoZip PocoUtil PocoXML PocoFoundation
target_libs = PocoZip PocoUtil PocoJSON PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif

View File

@ -12,6 +12,10 @@ objects = zip
target = zip
target_version = 1
target_libs = PocoZip PocoUtil PocoXML PocoFoundation
target_libs = PocoZip PocoUtil PocoJSON PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec
ifdef POCO_UNBUNDLED
SYSLIBS += -lz -lpcre -lexpat
endif