diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-06-03 16:56:05 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-03 20:50:01 +0100 |
commit | e9e6dd925cf1017dd93eb9304ed4cd31bac729e6 (patch) | |
tree | 11818c3120e93d030ae56b10d5c13df968a70b63 /Ports | |
parent | 5b034a75bb02bed84ee4c07797e794501dc5df46 (diff) | |
download | serenity-e9e6dd925cf1017dd93eb9304ed4cd31bac729e6.zip |
Ports: Replace manually linking `libpng` with a libtool patch
Diffstat (limited to 'Ports')
-rwxr-xr-x | Ports/libpng/package.sh | 8 | ||||
-rw-r--r-- | Ports/libpng/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch | 76 | ||||
-rw-r--r-- | Ports/libpng/patches/ReadMe.md | 16 |
3 files changed, 93 insertions, 7 deletions
diff --git a/Ports/libpng/package.sh b/Ports/libpng/package.sh index 2c15d1e56f..a21c609098 100755 --- a/Ports/libpng/package.sh +++ b/Ports/libpng/package.sh @@ -2,14 +2,8 @@ port=libpng version=1.6.37 useconfigure=true +configopts=("--disable-static" "--enable-shared") use_fresh_config_sub=true files="https://download.sourceforge.net/libpng/libpng-${version}.tar.gz libpng-${version}.tar.gz daeb2620d829575513e35fecc83f0d3791a620b9b93d800b763542ece9390fb4" auth_type=sha256 depends=("zlib") - -install() { - run make DESTDIR=${SERENITY_INSTALL_ROOT} "${installopts[@]}" install - ${CC} -shared -o ${SERENITY_INSTALL_ROOT}/usr/local/lib/libpng16.so -Wl,-soname,libpng16.so -Wl,--whole-archive ${SERENITY_INSTALL_ROOT}/usr/local/lib/libpng16.a -Wl,--no-whole-archive -lz - ln -sf libpng16.so ${SERENITY_INSTALL_ROOT}/usr/local/lib/libpng.so - rm -f ${SERENITY_INSTALL_ROOT}/usr/local/lib/libpng16.la ${SERENITY_INSTALL_ROOT}/usr/local/lib/libpng.la -} diff --git a/Ports/libpng/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch b/Ports/libpng/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch new file mode 100644 index 0000000000..dd47b84010 --- /dev/null +++ b/Ports/libpng/patches/0001-libtool-Enable-shared-library-support-for-SerenityOS.patch @@ -0,0 +1,76 @@ +From d556fcb6726b513794ab48818e453b8af848d2f1 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 1b2c463..ac2ad0b 100755 +--- a/configure ++++ b/configure +@@ -5728,6 +5728,10 @@ tpf*) + os2*) + lt_cv_deplibs_check_method=pass_all + ;; ++ ++serenity*) ++ lt_cv_deplibs_check_method=pass_all ++ ;; + esac + + fi +@@ -9172,6 +9176,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 + ;; +@@ -10690,6 +10698,10 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } + hardcode_shlibpath_var=no + ;; + ++ serenity*) ++ ld_shlibs=yes ++ ;; ++ + *) + ld_shlibs=no + ;; +@@ -11758,6 +11770,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/libpng/patches/ReadMe.md b/Ports/libpng/patches/ReadMe.md new file mode 100644 index 0000000000..8d6dc22174 --- /dev/null +++ b/Ports/libpng/patches/ReadMe.md @@ -0,0 +1,16 @@ +# Patches for libpng 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. + |