From 1b75ce3d19659603dce7ae952297ecf51a0161c6 Mon Sep 17 00:00:00 2001 From: Kevin Cernekee Date: Sun, 24 Mar 2013 18:14:03 -0700 Subject: [PATCH] android: Hack around GnuTLS build breakage GnuTLS wants to build e.g. src/tests.c and src/common.c into gnutls-cli-debug, but these files do not compile unless DHE and ECDHE are enabled. Signed-off-by: Kevin Cernekee Signed-off-by: David Woodhouse --- android/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/Makefile b/android/Makefile index a6e45311..0ef95cd1 100644 --- a/android/Makefile +++ b/android/Makefile @@ -225,7 +225,7 @@ $(GNUTLS_BUILD)/Makefile: $(GNUTLS_SRC)/configure $(NETTLE_DEPS) --disable-openssl-compatibility --disable-ocsp \ --disable-openpgp-authentication --disable-anon-authentication \ --disable-psk-authentication --disable-srp-authentication \ - --disable-dtls-srtp-support --disable-dhe --disable-ecdhe \ + --disable-dtls-srtp-support --enable-dhe --enable-ecdhe \ --disable-rsa-export $(GNUTLS_BUILD)/lib/libgnutls.la: $(GNUTLS_BUILD)/Makefile -- 2.51.0