1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 09:45:08 +00:00
serenity/Ports/sqlite/patches/configure.patch
Andrew Kaster 0a04f4ae86 Ports: Patch sqlite's configure script to let it build as a shared lib
By telling the libtool-related configure checks that the serenity
platform does in fact support shared libs, we can get a VERSYM-free
shared lib out of sqlite. This probably applies to other ports as well.

Suggested-by: Daniel Bertalan <dani@danielbertalan.dev>
2022-01-08 18:56:29 +01:00

23 lines
536 B
Diff

--- sqlite-autoconf-3350500/configure 2021-04-19 20:56:40.000000000 +0200
+++ sqlite-autoconf-port/configure 2022-01-08 10:07:29.108097826 +0100
@@ -11069,6 +11069,8 @@
hardcode_shlibpath_var=no
;;
+ serenity*)
+ ;;
*)
ld_shlibs=no
;;
--- sqlite-autoconf-3350500/configure 2022-01-08 10:08:22.185276101 +0100
+++ sqlite-autoconf-port/configure 2022-01-08 10:09:52.836148833 +0100
@@ -12151,6 +12151,8 @@
shlibpath_var=LD_LIBRARY_PATH
;;
+serenity*)
+ ;;
*)
dynamic_linker=no
;;