From edfcaff9bf79a8aa9b70e6678a5c9958823ba93f Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Sat, 4 Oct 2025 23:26:07 +0800 Subject: [PATCH] sqlite: Get rid of rpath --- chapter08/sqlite.xml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/chapter08/sqlite.xml b/chapter08/sqlite.xml index e01eded51..dde49fa29 100644 --- a/chapter08/sqlite.xml +++ b/chapter08/sqlite.xml @@ -56,7 +56,7 @@ -D SQLITE_ENABLE_DBSTAT_VTAB=1 \ -D SQLITE_SECURE_DELETE=1" - The meaning of the make option: + The meaning of the configure options: --enable-fts{4,5} @@ -81,7 +81,13 @@ Compile the package: -make +make LDFLAGS.rpath="" + + The LDFLAGS.rpath="" option prevents + hard coding library search paths (rpath) into the shared library. + This package does not need rpath for an installation into the standard + location, and rpath may sometimes cause unwanted effects or even + security issues. This package does not come with a test suite.