mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-02 22:07:15 +08:00
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:
commit
ce7eee2ae3
@ -43,7 +43,13 @@
|
|||||||
<para>October 25th, 2024</para>
|
<para>October 25th, 2024</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>[Zeckmathederg] - rust-bindgen: 0.70.1 -> 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 -> 0.69.4.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>[Toxikuu] - GLib2: Disabled tests and added libxslt as an
|
<para>[Toxikuu] - GLib2: Disabled tests and added libxslt as an
|
||||||
|
@ -99,6 +99,20 @@
|
|||||||
patch -Np1 -i ../nss-&nss-version;-illegal_instruction-1.patch</userinput></screen>
|
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>&1 ||
|
||||||
|
if [ -f /usr/lib/libsqlite3.so ]; then
|
||||||
|
rm -vf /usr/lib/libsqlite3.so
|
||||||
|
fi</userinput></screen>
|
||||||
|
|
||||||
|
</important>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Install <application>NSS</application> by running the following commands:
|
Install <application>NSS</application> by running the following commands:
|
||||||
</para>
|
</para>
|
||||||
@ -212,6 +226,19 @@ install -v -m644 Linux*/lib/pkgconfig/nss.pc /usr/lib/pkgconfig</userinput></sc
|
|||||||
<filename>nss</filename>.
|
<filename>nss</filename>.
|
||||||
</para></note>
|
</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>&1 ||
|
||||||
|
if [ -f /usr/lib32/libsqlite3.so ]; then
|
||||||
|
rm -vf /usr/lib32/libsqlite3.so
|
||||||
|
fi</userinput></screen>
|
||||||
|
|
||||||
|
</important>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Install <application>lib32-NSS</application> by running the following commands:
|
Install <application>lib32-NSS</application> by running the following commands:
|
||||||
</para>
|
</para>
|
||||||
|
Loading…
Reference in New Issue
Block a user