]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
configure: export mp_ symbols when compiling with mini-gmp
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Thu, 10 Mar 2016 16:44:08 +0000 (17:44 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Tue, 15 Mar 2016 18:31:52 +0000 (19:31 +0100)
This addresses build issue when compiling with --enable-mini-gmp
and the symbol script being used.

configure.ac

index 3d804dbf5e97e92ce16ff47cce51002af18ad2d0..029a15c411200221d1c400e0154d4d308cd51280 100644 (file)
@@ -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=""