aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2021-04-14 20:00:04 +0200
committerAndrea Corallo2021-04-14 20:03:17 +0200
commitbfaa6df492c85d7de007cf69316cbdeea653d703 (patch)
tree151babdf9a4d2357b3ce0a24f330acd05bffe3b4
parent95dd6bb08038e31515568943dcfae13afac8ff70 (diff)
downloademacs-bfaa6df492c85d7de007cf69316cbdeea653d703.tar.gz
emacs-bfaa6df492c85d7de007cf69316cbdeea653d703.zip
* configure.ac: Fix native-comp FreeBSD build.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a47871fbd89..0e91a49488c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3826,7 +3826,7 @@ if test "${with_native_compilation}" != "no"; then
3826 # mingw32 loads the library dynamically. 3826 # mingw32 loads the library dynamically.
3827 mingw32) ;; 3827 mingw32) ;;
3828 # OpenBSD doesn't have libdl, all the functions are in libc 3828 # OpenBSD doesn't have libdl, all the functions are in libc
3829 openbsd) 3829 freebsd|openbsd)
3830 LIBGCCJIT_LIB="-lgccjit" ;; 3830 LIBGCCJIT_LIB="-lgccjit" ;;
3831 *) 3831 *)
3832 LIBGCCJIT_LIB="-lgccjit -ldl" ;; 3832 LIBGCCJIT_LIB="-lgccjit -ldl" ;;