From e2a161fc9262312ef4877a894df9ac7e8688698f Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 29 Jan 2014 13:30:15 +0000 Subject: [PATCH] alpine: fix build on Archlinux alpine adds a wrong path during configure (-L/usr/lib) this leads to build fail on Archlinux ... checking for setupterm in -lncurses... no ... "configure: error: Terminfo/termcap not found" since Debian uses a different path for "host libs" it fails to load wrong libs and finds the right ncurses lib in the next (correct) path The wrong path is injected by the SSL test thx jow for finding it Signed-off-by: Dirk Neukirchen SVN-Revision: 39423 --- mail/alpine/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/mail/alpine/Makefile b/mail/alpine/Makefile index 8a315250d9..a46d57e2d8 100644 --- a/mail/alpine/Makefile +++ b/mail/alpine/Makefile @@ -37,6 +37,7 @@ endef CONFIGURE_ARGS += \ --with-ssl-include-dir=$(STAGING_DIR)/usr/include/openssl/. \ + --with-ssl-lib-dir=$(STAGING_DIR)/usr/lib \ --without-tcl \ --without-ldap \ --without-krb5 \ -- 2.30.2