From: Nikos Mavrogiannopoulos Date: Thu, 10 Mar 2016 16:44:08 +0000 (+0100) Subject: configure: export mp_ symbols when compiling with mini-gmp X-Git-Tag: nettle_3.3_release_20161001~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d353fb79f5ad5f5076fbacc3584df96ad4684162;p=thirdparty%2Fnettle.git configure: export mp_ symbols when compiling with mini-gmp This addresses build issue when compiling with --enable-mini-gmp and the symbol script being used. --- diff --git a/configure.ac b/configure.ac index 3d804dbf..029a15c4 100644 --- a/configure.ac +++ b/configure.ac @@ -91,7 +91,7 @@ AC_ARG_ENABLE(mini-gmp, if test "x$enable_mini_gmp" = xyes ; then NETTLE_USE_MINI_GMP=1 - HOGWEED_EXTRA_SYMBOLS="mpz_*;gmp_*;mpn_*;" + HOGWEED_EXTRA_SYMBOLS="mpz_*;gmp_*;mpn_*;mp_*;" else NETTLE_USE_MINI_GMP=0 HOGWEED_EXTRA_SYMBOLS=""