diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-06-03 16:35:30 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-03 20:50:01 +0100 |
commit | 9d3e8b3e572628cb25cd1c4e968c520abf13a061 (patch) | |
tree | 99e674e78631e72f2e6e735d44942e06137397c4 /Ports | |
parent | c4f645f4a2957b26093aae6c0391089c74c9da59 (diff) | |
download | serenity-9d3e8b3e572628cb25cd1c4e968c520abf13a061.zip |
Ports: Replace manually linking `libgcrypt` with a libtool patch
Diffstat (limited to 'Ports')
-rwxr-xr-x | Ports/libgcrypt/package.sh | 6 | ||||
-rw-r--r-- | Ports/libgcrypt/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch | 76 | ||||
-rw-r--r-- | Ports/libgcrypt/patches/ReadMe.md | 16 |
3 files changed, 92 insertions, 6 deletions
diff --git a/Ports/libgcrypt/package.sh b/Ports/libgcrypt/package.sh index 0072f8f03f..bfc6a585cd 100755 --- a/Ports/libgcrypt/package.sh +++ b/Ports/libgcrypt/package.sh @@ -16,9 +16,3 @@ pre_configure() { configure() { run ./configure --host="${SERENITY_ARCH}-pc-serenity" --build="$($workdir/build-aux/config.guess)" "${configopts[@]}" } - -install() { - run make DESTDIR=${SERENITY_INSTALL_ROOT} "${installopts[@]}" install - ${CC} -shared -o ${SERENITY_INSTALL_ROOT}/usr/local/lib/libgcrypt.so -Wl,-soname,libgcrypt.so -Wl,--whole-archive ${SERENITY_INSTALL_ROOT}/usr/local/lib/libgcrypt.a -Wl,--no-whole-archive -lgpg-error - rm -f ${SERENITY_INSTALL_ROOT}/usr/local/lib/libgcrypt.la -} diff --git a/Ports/libgcrypt/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch b/Ports/libgcrypt/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch new file mode 100644 index 0000000000..d8187bb203 --- /dev/null +++ b/Ports/libgcrypt/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch @@ -0,0 +1,76 @@ +From dfef4a23509c2f239d0fda51abfd3574147a620d Mon Sep 17 00:00:00 2001 +From: Tim Schumacher <timschumi@gmx.de> +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 906cbcb..1929b30 100755 +--- a/configure ++++ b/configure +@@ -6522,6 +6522,10 @@ sysv4 | sysv4.3*) + tpf*) + lt_cv_deplibs_check_method=pass_all + ;; ++ ++serenity*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; + esac + + fi +@@ -9546,6 +9550,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 + ;; +@@ -10962,6 +10970,10 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } + hardcode_shlibpath_var=no + ;; + ++ serenity*) ++ ld_shlibs=yes ++ ;; ++ + *) + ld_shlibs=no + ;; +@@ -11977,6 +11989,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 + ;; +-- +2.36.1 + diff --git a/Ports/libgcrypt/patches/ReadMe.md b/Ports/libgcrypt/patches/ReadMe.md new file mode 100644 index 0000000000..2c4e100300 --- /dev/null +++ b/Ports/libgcrypt/patches/ReadMe.md @@ -0,0 +1,16 @@ +# Patches for libgcrypt on SerenityOS + +## `0001-libtool-Enable-shared-library-support-for-SerenityOS.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. + |