From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Sun, 29 May 2022 15:01:28 +0200 Subject: [PATCH] libtool: Enable shared library support for SerenityOS For some odd reason, libtool handles the configuration for shared libraries entirely statically and in its configure script. If no shared library support is "present", building shared libraries is disabled entirely. Fix that by just adding the appropriate configuration options for `serenity`. This allows us to finally create dynamic libraries automatically using libtool, without having to manually link the static library into a shared library. --- configure | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/configure b/configure index 05bb3f947eb9c9d63a76882d0c867d71bc7eea19..b4573c8b960799056534ec9f85519aa8ec6cd84a 100755 --- a/configure +++ b/configure @@ -6540,6 +6540,10 @@ tpf*) os2*) lt_cv_deplibs_check_method=pass_all ;; + +serenity*) + lt_cv_deplibs_check_method=pass_all + ;; esac fi @@ -9713,6 +9717,10 @@ lt_prog_compiler_static= lt_prog_compiler_static='-Bstatic' ;; + serenity*) + lt_prog_compiler_can_build_shared=yes + ;; + *) lt_prog_compiler_can_build_shared=no ;; @@ -11247,6 +11255,10 @@ printf "%s\n" "$lt_cv_irix_exported_symbol" >&6; } hardcode_shlibpath_var=no ;; + serenity*) + ld_shlibs=yes + ;; + *) ld_shlibs=no ;; @@ -12331,6 +12343,17 @@ uts4*) shlibpath_var=LD_LIBRARY_PATH ;; +serenity*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}${versuffix} ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}${major}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + dynamic_linker='SerenityOS LibELF' + ;; + *) dynamic_linker=no ;;