NSS: Fixed a build issue if SQLite is not completely installed. PR (#30)

Co-authored-by: Tox <toxikuu@users.noreply.github.com>
This commit is contained in:
Zeckmathederg 2024-10-25 19:18:52 -06:00
commit ce7eee2ae3
2 changed files with 34 additions and 1 deletions

View File

@ -43,7 +43,13 @@
<para>October 25th, 2024</para>
<itemizedlist>
<listitem>
<para>[Zeckmathederg] - rust-bindgen: 0.70.1 -&gt; 0.69.4.<para>
<para>[Toxikuu] - NSS: Fixed a build issue if SQLite
is not completely installed. PR
<ulink url="https://github.com/Zeckmathederg/glfs/pull/30">(#30)</ulink>
</para>
</listitem>
<listitem>
<para>[Zeckmathederg] - rust-bindgen: 0.70.1 -&gt; 0.69.4.</para>
</listitem>
<listitem>
<para>[Toxikuu] - GLib2: Disabled tests and added libxslt as an

View File

@ -99,6 +99,20 @@
patch -Np1 -i ../nss-&nss-version;-illegal_instruction-1.patch</userinput></screen>
-->
<important>
<para>
If you're rebuilding NSS and you have not installed SQLite, run the
following command to remove a problematic library:
</para>
<screen role="root"><userinput remap="pre">sqlite3 --version > /dev/null 2>&amp;1 ||
if [ -f /usr/lib/libsqlite3.so ]; then
rm -vf /usr/lib/libsqlite3.so
fi</userinput></screen>
</important>
<para>
Install <application>NSS</application> by running the following commands:
</para>
@ -212,6 +226,19 @@ install -v -m644 Linux*/lib/pkgconfig/nss.pc /usr/lib/pkgconfig</userinput></sc
<filename>nss</filename>.
</para></note>
<important>
<para>
If you're rebuilding NSS and you have not installed SQLite, run the
following command to remove a problematic library:
</para>
<screen role="root"><userinput remap="pre">sqlite3 --version > /dev/null 2>&amp;1 ||
if [ -f /usr/lib32/libsqlite3.so ]; then
rm -vf /usr/lib32/libsqlite3.so
fi</userinput></screen>
</important>
<para>
Install <application>lib32-NSS</application> by running the following commands:
</para>