summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-connectivity/openssl/openssl-1.0.0c/libdeps-first.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-03-17 21:41:22 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2011-03-17 21:41:22 +0100
commitc58cc7d3796dcee6e93885c835ed04cb566abeb2 (patch)
tree3eea4d4ef6a4ef79e0f4e025d7012c1a5cc38835 /meta-oe/recipes-connectivity/openssl/openssl-1.0.0c/libdeps-first.patch
parenteec6ab97f712e06eb52c9f7c99e19ffab3ce9d74 (diff)
downloadmeta-openembedded-c58cc7d3796dcee6e93885c835ed04cb566abeb2.tar.gz
move layer into meta-oe in preparation for future splits
As per TSC decision Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-connectivity/openssl/openssl-1.0.0c/libdeps-first.patch')
-rw-r--r--meta-oe/recipes-connectivity/openssl/openssl-1.0.0c/libdeps-first.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/openssl/openssl-1.0.0c/libdeps-first.patch b/meta-oe/recipes-connectivity/openssl/openssl-1.0.0c/libdeps-first.patch
new file mode 100644
index 000000000..1fda69ba9
--- /dev/null
+++ b/meta-oe/recipes-connectivity/openssl/openssl-1.0.0c/libdeps-first.patch
@@ -0,0 +1,27 @@
1Links to previously staged 0.9.8* easily otherwise
2
3Index: openssl-1.0.0/Makefile.shared
4===================================================================
5--- openssl-1.0.0.orig/Makefile.shared
6+++ openssl-1.0.0/Makefile.shared
7@@ -96,7 +96,7 @@
8 LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
9 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
10 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
11- $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS} )
12+ $${LDCMD} $${LIBDEPS} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) )
13
14 LINK_SO= \
15 ( $(SET_X); \
16@@ -106,9 +106,9 @@
17 LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
18 LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
19 LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
20- $${SHAREDCMD} $${SHAREDFLAGS} \
21+ $${SHAREDCMD} $$LIBDEPS $${SHAREDFLAGS} \
22 -o $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
23- $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
24+ $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS \
25 ) && $(SYMLINK_SO)
26
27 SYMLINK_SO= \