blob: 2ef5ceea15b45229ef8526e5f91cf191ae3bc249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Link libmico.so against ssl,crypto on any platform when necessary,
to get -Wl,--as-needed working. #280678.
--- orb/Makefile.orig 2009-09-08 18:25:23.157431541 +0200
+++ orb/Makefile 2009-09-08 18:27:23.717729431 +0200
@@ -31,7 +31,7 @@
endif
PLATFORM_LIBS =
-ifeq ($(HAVE_CYGWIN), yes)
+#ifeq ($(HAVE_CYGWIN), yes)
ifeq ($(USE_CSL2), yes)
PLATFORM_LIBS := $(PLATFORM_LIBS) -lssl -lcrypto
else
@@ -43,7 +43,7 @@
endif
endif
endif
-endif
+#endif
ifeq ($(HAVE_ORB_EXCEPTS), no)
CXXFLAGS := $(CXXFLAGS) $(NOEHFLAGS) -DMICO_CONF_NO_EXCEPTIONS
|