Skip to content

Commit

Permalink
Merge pull request #104 from UdjinM6/fix_gmp_freebsd
Browse files Browse the repository at this point in the history
fix: gmp detection on FreeBSD
  • Loading branch information
PastaPastaPasta authored Dec 4, 2024
2 parents aad89e3 + a3fcdde commit 5cc55ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,11 @@ case $host in
GMP_LDFLAGS="-L$gmp_prefix/lib"
fi
fi
;;
;;
*freebsd*)
GMP_CPPFLAGS="-I/usr/local/include"
GMP_LDFLAGS="-L/usr/local/lib"
;;
esac

if test x"$want_backend" = x"auto"; then
Expand Down

0 comments on commit 5cc55ce

Please sign in to comment.