From a03181757d001f3ca0cb2186b9c744f3b6053c7e Mon Sep 17 00:00:00 2001 From: Klas Lindfors Date: Mon, 7 Dec 2015 12:08:50 +0100 Subject: [PATCH] change around windows layout, include libssl, drop all pkgconfig --- windows.mk | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/windows.mk b/windows.mk index 8b88736..56ad45f 100644 --- a/windows.mk +++ b/windows.mk @@ -53,17 +53,14 @@ doit: rm -rf $(PWD)/tmp$(ARCH)/root/ssl/ && \ rm $(PWD)/tmp$(ARCH)/root/bin/openssl.exe && \ rm $(PWD)/tmp$(ARCH)/root/bin/c_rehash && \ - rm $(PWD)/tmp$(ARCH)/root/bin/ssleay32.dll && \ rm -rf $(PWD)/tmp$(ARCH)/root/lib/engines/ && \ - rm -rf $(PWD)/tmp$(ARCH)/root/lib/libssl* && \ - rm $(PWD)/tmp$(ARCH)/root/lib/pkgconfig/libssl.pc && \ - rm $(PWD)/tmp$(ARCH)/root/lib/pkgconfig/openssl.pc && \ cd .. && \ cp ../$(PACKAGE)-$(VERSION).tar.gz . && \ tar xfa $(PACKAGE)-$(VERSION).tar.gz && \ cd $(PACKAGE)-$(VERSION)/ && \ CC=$(HOST)-gcc PKG_CONFIG_PATH=$(PWD)/tmp$(ARCH)/root/lib/pkgconfig lt_cv_deplibs_check_method=pass_all ./configure --host=$(HOST) --build=x86_64-unknown-linux-gnu --prefix=$(PWD)/tmp$(ARCH)/root LDFLAGS=-L$(PWD)/tmp$(ARCH)/root/lib CPPFLAGS=-I$(PWD)/tmp$(ARCH)/root/include && \ make install $(CHECK) && \ + rm -rf $(PWD)/tmp$(ARCH)/root/lib/pkgconfig/ && \ cp COPYING $(PWD)/tmp$(ARCH)/root/licenses/$(PACKAGE).txt && \ cd .. && \ cd root && \