mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 04:19:07 +08:00
f2ec6c5a7c
* [mpc] add mpc port * [mpfr] update mpfr to use make. * [gmp] fix preprocessor define for dlls. * more fixes * fix mpfr regression on !windows * install autoconf-archive in provisioning script * change indent of patches Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * fix merge error * update PR * update baseline Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: Nicole Mazzuca <mazzucan@outlook.com>
16 lines
583 B
Diff
16 lines
583 B
Diff
diff --git a/configure.ac b/configure.ac
|
|
index ab3da6092..2533df1d8 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -151,7 +151,9 @@ AC_CHECK_FUNCS([dup dup2],,
|
|
|
|
AC_CHECK_LIB([gmp], [__gmpz_init],
|
|
[LIBS="-lgmp $LIBS"],
|
|
- [AC_MSG_ERROR([libgmp not found or uses a different ABI (including static vs shared).])])
|
|
+ [AC_CHECK_LIB([gmpd], [__gmpz_init],
|
|
+ [LIBS="-lgmpd $LIBS"],
|
|
+ [AC_MSG_ERROR([libgmp not found or uses a different ABI (including static vs shared).])])])
|
|
|
|
AC_MSG_CHECKING(for MPFR)
|
|
LIBS="-lmpfr $LIBS"
|