mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
2ecb594c49
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18566 af4574ff-66df-0310-9fd7-8a98e5e911e0
231 lines
6.1 KiB
XML
231 lines
6.1 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY JS-download-http "http://ftp.mozilla.org/pub/mozilla.org/js/mozjs&JS-version;.tar.gz">
|
|
<!-- <!ENTITY JS-download-ftp "ftp://ftp.mozilla.org/pub/mozilla.org/js/mozjs&JS-version;.tar.gz">-->
|
|
<!ENTITY JS-download-ftp " ">
|
|
<!ENTITY JS-md5sum "20b6f8f1140ef6e47daa3b16965c9202">
|
|
<!ENTITY JS-size "6.5 MB">
|
|
<!ENTITY JS-buildsize "1.2 GB">
|
|
<!ENTITY JS-time "5.0 SBU">
|
|
]>
|
|
|
|
<sect1 id="JS" xreflabel="JS-&JS-version;">
|
|
<?dbhtml filename="js.html"?>
|
|
|
|
<sect1info>
|
|
<othername>$LastChangedBy$</othername>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>JS-&JS-version;</title>
|
|
|
|
<indexterm zone="JS">
|
|
<primary sortas="a-JS">JS</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to JS</title>
|
|
|
|
<para>
|
|
<application>JS</application> is Mozilla's JavaScript engine
|
|
written in C/C++.
|
|
</para>
|
|
|
|
&lfs80_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&JS-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&JS-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &JS-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &JS-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &JS-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &JS-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">JS Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="libffi"/>,
|
|
<xref linkend="nspr"/>,
|
|
<xref linkend="python2"/> and
|
|
<xref linkend="zip"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="doxygen"/>
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">User Notes:
|
|
<ulink url="&blfs-wiki;/JS"/>
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of JS</title>
|
|
|
|
<para>
|
|
Install <application>JS</application> by running the
|
|
following commands:
|
|
</para>
|
|
|
|
<screen><userinput>cd js/src &&
|
|
|
|
sed -i 's/(defined\((@TEMPLATE_FILE)\))/\1/' config/milestone.pl &&
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-readline \
|
|
--enable-threadsafe \
|
|
--with-system-ffi \
|
|
--with-system-nspr &&
|
|
make</userinput></screen>
|
|
|
|
<para>
|
|
To test the results, issue: <command>make check</command>.
|
|
</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem>
|
|
user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>make install &&
|
|
|
|
find /usr/include/js-17.0/ \
|
|
/usr/lib/libmozjs-17.0.a \
|
|
/usr/lib/pkgconfig/mozjs-17.0.pc \
|
|
-type f -exec chmod -v 644 {} \;</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<para>
|
|
<command>sed ... config/milestone.pl</command>: Fix an
|
|
issue caused by perl-5.22.0 and later.
|
|
</para>
|
|
|
|
<para>
|
|
<parameter>--enable-threadsafe</parameter>: This switch enables
|
|
support for multiple threads.
|
|
</para>
|
|
|
|
<para>
|
|
<parameter>--enable-readline</parameter>: This switch enables
|
|
<application>Readline</application> support in JS shell.
|
|
</para>
|
|
|
|
<para>
|
|
<parameter>--with-system-ffi</parameter>: This switch forces the
|
|
package to link to the system version of <application>libffi</application>
|
|
instead of using its included, and now old, version.
|
|
</para>
|
|
|
|
<para>
|
|
<parameter>--with-system-nspr</parameter>: This switch forces the
|
|
package to link to the system version of <application>NSPR</application>
|
|
instead of using its included, and now old, version.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Libraries</segtitle>
|
|
<segtitle>Installed Directory</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
js17 and js17-config
|
|
</seg>
|
|
<seg>
|
|
libmozjs-17.0.a and libmozjs-17.0.so
|
|
</seg>
|
|
<seg>
|
|
/usr/include/js-17.0
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="js17">
|
|
<term><command>js17</command></term>
|
|
<listitem>
|
|
<para>
|
|
provides a command line interface to the JavaScript engine.
|
|
</para>
|
|
<indexterm zone="JS js17">
|
|
<primary sortas="b-js17">js17</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="js17-config">
|
|
<term><command>js17-config</command></term>
|
|
<listitem>
|
|
<para>
|
|
is used to find out <application>JS</application>
|
|
compiler and linker flags.
|
|
</para>
|
|
<indexterm zone="JS js17-config">
|
|
<primary sortas="b-js17-config">js17-config</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libmozjs">
|
|
<term><filename class="libraryfile">libmozjs-17.0.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
contains the <application>Mozilla JavaScript</application> API functions.
|
|
</para>
|
|
<indexterm zone="JS libmozjs">
|
|
<primary sortas="c-libmozjs">libmozjs-17.0.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|