summaryrefslogtreecommitdiffstats
path: root/package/openssl
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-14 07:16:59 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-14 07:16:59 +0000
commit54a2261425cb5e0c3391d5d22b0d3374c8602b82 (patch)
tree21cbaf53fd65d15a006b6131add5bbe07130efdf /package/openssl
parente821dce65ec9be1089e4498c2ced0bc8f82db7f0 (diff)
Change searchpath from STAGING_DIR/{include,lib} to STAGING_DIR/usr/{include,lib},
Fix static libraries building git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@648 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openssl')
-rw-r--r--package/openssl/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/package/openssl/Makefile b/package/openssl/Makefile
index afa5f304e..c33d41244 100644
--- a/package/openssl/Makefile
+++ b/package/openssl/Makefile
@@ -34,13 +34,17 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.patched
(cd $(PKG_BUILD_DIR); \
CFLAGS="-DOPENSSL_NO_KRB5 -DOPENSSL_NO_IDEA -DOPENSSL_NO_MDC2 -DOPENSSL_NO_RC5" \
PATH=$(TARGET_PATH) ./Configure linux-$(ARCH) --prefix=/ \
- --openssldir=/usr/lib/ssl -L$(STAGING_DIR)/lib -ldl \
- -I$(STAGING_DIR)/include $(OPENSSL_NO_CIPHERS) \
+ --openssldir=/usr/lib/ssl -L$(STAGING_DIR)/usr/lib -ldl \
+ -I$(STAGING_DIR)/usr/include $(OPENSSL_NO_CIPHERS) \
shared no-krb5 no-ec no-engine zlib-dynamic no-hw no-threads )
touch $(PKG_BUILD_DIR)/.configured
$(PKG_BUILD_DIR)/apps/openssl: $(PKG_BUILD_DIR)/.configured
- $(MAKE) -j1 CC=$(TARGET_CC) -C $(PKG_BUILD_DIR) all build-shared
+ $(MAKE) -C $(PKG_BUILD_DIR) -j1 \
+ CC="$(TARGET_CC)" \
+ AR="$(TARGET_CROSS)ar r" \
+ RANLIB="$(TARGET_CROSS)ranlib" \
+ all build-shared
# Work around openssl build bug to link libssl.so with libcrypto.so.
-rm $(PKG_BUILD_DIR)/libssl.so.*.*.*
$(MAKE) -j1 CC=$(TARGET_CC) -C $(PKG_BUILD_DIR) do_linux-shared