Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] git: fix static link with openssl
@ 2015-02-10  8:39 Baruch Siach
  2015-02-10 10:02 ` Vicente Olivert Riera
  2015-02-12  7:41 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Baruch Siach @ 2015-02-10  8:39 UTC (permalink / raw)
  To: buildroot

openssl needs -lz when building statically.

Fixes:
http://autobuild.buildroot.net/results/4b3/4b33f3f415776cf43be0910b583d222711a03cad/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/git/git.mk | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/package/git/git.mk b/package/git/git.mk
index b5244aca0474..674095df6043 100644
--- a/package/git/git.mk
+++ b/package/git/git.mk
@@ -14,6 +14,7 @@ GIT_DEPENDENCIES = zlib host-gettext
 ifeq ($(BR2_PACKAGE_OPENSSL),y)
 	GIT_DEPENDENCIES += openssl
 	GIT_CONF_OPTS += --with-openssl
+	GIT_CONF_ENV_LIBS += $(if $(BR2_STATIC_LIBS),-lz)
 else
 	GIT_CONF_OPTS += --without-openssl
 endif
@@ -41,7 +42,7 @@ endif
 
 ifeq ($(BR2_PACKAGE_LIBICONV),y)
 	GIT_DEPENDENCIES += libiconv
-	GIT_CONF_ENV += LIBS=-liconv
+	GIT_CONF_ENV_LIBS += -liconv
 	GIT_CONF_OPTS += --with-iconv=/usr/lib
 else
 	GIT_CONF_OPTS += --without-iconv
@@ -56,7 +57,7 @@ endif
 
 # assume yes for these tests, configure will bail out otherwise
 # saying error: cannot run test program while cross compiling
-GIT_CONF_ENV += ac_cv_fread_reads_directories=yes \
-	ac_cv_snprintf_returns_bogus=yes
+GIT_CONF_ENV = ac_cv_fread_reads_directories=yes \
+	ac_cv_snprintf_returns_bogus=yes LIBS='$(GIT_CONF_ENV_LIBS)'
 
 $(eval $(autotools-package))
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] git: fix static link with openssl
  2015-02-10  8:39 [Buildroot] [PATCH] git: fix static link with openssl Baruch Siach
@ 2015-02-10 10:02 ` Vicente Olivert Riera
  2015-02-12  7:41 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Vicente Olivert Riera @ 2015-02-10 10:02 UTC (permalink / raw)
  To: buildroot

Dear Baruch,

Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

$ grep -E ^BR2_PACKAGE_OPENSSL .config
BR2_PACKAGE_OPENSSL=y
$ grep -E ^BR2_PACKAGE_GIT .config
BR2_PACKAGE_GIT=y
$ file output/build/git-2.3.0/git
output/build/git-2.3.0/git: ELF 32-bit LSB executable, MIPS, MIPS32
version 1 (SYSV), statically linked, with unknown capability 0xf41 =
0x756e6700, with unknown capability 0x70100 = 0x3040000, not stripped

Best regards,
--
Vincent

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] git: fix static link with openssl
  2015-02-10  8:39 [Buildroot] [PATCH] git: fix static link with openssl Baruch Siach
  2015-02-10 10:02 ` Vicente Olivert Riera
@ 2015-02-12  7:41 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2015-02-12  7:41 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > openssl needs -lz when building statically.
 > Fixes:
 > http://autobuild.buildroot.net/results/4b3/4b33f3f415776cf43be0910b583d222711a03cad/

> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-02-12  7:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-10  8:39 [Buildroot] [PATCH] git: fix static link with openssl Baruch Siach
2015-02-10 10:02 ` Vicente Olivert Riera
2015-02-12  7:41 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox