ports/devel/ice/files/patch-cpp-test-Ice-objects-Makefile
Michael Gmelin ca88d41854 Update ice ports to 3.6.3
A few critical patches got merged upstream, a few new were required
to maintain LibreSSL support and fix other new issues. Note that slice2py
moved from devel/py-ice to devel/ice.

Approved by:	mentors (implicit)
2016-10-12 17:23:57 +00:00

25 lines
752 B
Text

--- cpp/test/Ice/objects/Makefile.orig 2016-10-05 16:59:08.000000000 +0200
+++ cpp/test/Ice/objects/Makefile 2016-10-11 23:05:25.082085910 +0200
@@ -12,7 +12,7 @@
CLIENT = $(call mktestname,client)
SERVER = $(call mktestname,server)
COLLOCATED = $(call mktestname,collocated)
-TESTLIBNAME = libTestDerived.a
+TESTLIBNAME = libTestDerived.so
TARGETS = $(CLIENT) $(SERVER) $(COLLOCATED) $(TESTLIBNAME)
@@ -47,11 +47,11 @@
$(TESTLIBNAME): $(SLICE_OBJS)
rm -f $@
- $(call mklib,$@,$(SLICE_OBJS))
+ $(call mkshlib,$@,$(TESTLIBNAME),$(SLICE_OBJS),$(LIBS))
$(CLIENT): $(COBJS) $(TESTLIBNAME)
rm -f $@
- $(call mktest,$@,$(COBJS) -lTestDerived $(LIBS))
+ $(call mktest,$@,-lTestDerived $(COBJS) $(LIBS))
$(SERVER): $(SOBJS)
rm -f $@