This commit is contained in:
2022-02-03 23:45:47 -08:00
parent 42c2062cc4
commit 184ece190c
1438 changed files with 404064 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
dnl Copyright (c) 2018 The PIVX Core developers
dnl Distributed under the MIT software license, see the accompanying
dnl file COPYING or http://www.opensource.org/licenses/mit-license.php.
dnl
AC_DEFUN([GMP_CHECK],[
if test x"$has_gmp" != x"yes"; then
AC_CHECK_HEADER(gmp.h,[
AC_CHECK_LIB(gmp, __gmpz_init,[
has_gmp=yes;
LIBS="$LIBS -lgmp";
AC_DEFINE(HAVE_LIBGMP, 1, [Define this symbol if libgmp is installed])
])
])
fi
])