Skip to content

Commit

Permalink
fix: gmp detection on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
UdjinM6 committed Dec 4, 2024
1 parent 4e07024 commit a3fcdde
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 a3fcdde

Please sign in to comment.