]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix libgccjit build on Haiku
authorPo Lu <luangruo@yahoo.com>
Wed, 6 Sep 2023 03:19:32 +0000 (11:19 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 6 Sep 2023 03:19:38 +0000 (11:19 +0800)
* configure.ac (LIBGCCJIT_LIBS): Link only with -lgccjit under
Haiku.

configure.ac

index ab401be1c1d68197e5c79ba321042707e6f9ab07..a4986c7a43c4e30a57ff25cef18a60efaeb24491 100644 (file)
@@ -4385,8 +4385,9 @@ if test "${with_native_compilation}" != "no"; then
     case "${opsys}" in
       # mingw32 loads the library dynamically.
       mingw32) ;;
-      # OpenBSD doesn't have libdl, all the functions are in libc
-      netbsd|openbsd)
+      # Neither NetBSD, OpenBSD nor Haiku have libdl, with all dynamic
+      # linker functions placed within libc.
+      netbsd|openbsd|haiku)
         LIBGCCJIT_LIBS="-lgccjit" ;;
       darwin)
         LIBGCCJIT_CFLAGS="${MAC_CFLAGS}"