mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 23:07:23 +08:00
updated to ncftp-3.1.7
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1740 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
a5d2297f03
commit
af986b5e0a
@ -2,7 +2,7 @@
|
|||||||
<title>Configuring <application>Nc<acronym>FTP</acronym></application></title>
|
<title>Configuring <application>Nc<acronym>FTP</acronym></application></title>
|
||||||
|
|
||||||
<sect3><title>Config files</title>
|
<sect3><title>Config files</title>
|
||||||
<para><filename>~/.ncftp/*</filename>; especially
|
<para><filename class="directory">~/.ncftp/*</filename>; especially
|
||||||
<filename>~/.ncftp/prefs_v3</filename></para>
|
<filename>~/.ncftp/prefs_v3</filename></para>
|
||||||
</sect3>
|
</sect3>
|
||||||
|
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
<sect2>
|
<sect2>
|
||||||
<title>Contents</title>
|
<title>Contents</title>
|
||||||
|
|
||||||
<para>The <application>Nc<acronym>FTP</acronym></application> package contains <command>ncftp</command>, <command>ncftpbatch
|
<para>The <application>Nc<acronym>FTP</acronym></application> package
|
||||||
|
contains <filename class="libraryfile">libncftp</filename>,
|
||||||
|
<command>ncftp</command>, <command>ncftpbatch
|
||||||
</command>, <command>ncftpbookmarks</command>,
|
</command>, <command>ncftpbookmarks</command>,
|
||||||
<command>ncftpget</command>, <command>ncftpls</command>,
|
<command>ncftpget</command>, <command>ncftpls</command>,
|
||||||
<command>ncftpput</command> and <command>ncftpspooler</command>.</para>
|
<command>ncftpput</command> and <command>ncftpspooler</command>.</para>
|
||||||
@ -32,4 +34,3 @@
|
|||||||
<para>Global batch <acronym>FTP</acronym> job processor daemon.</para></sect3>
|
<para>Global batch <acronym>FTP</acronym> job processor daemon.</para></sect3>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<sect2>
|
<sect2>
|
||||||
<title>Command explanations</title>
|
<title>Command explanations</title>
|
||||||
|
|
||||||
<para><screen><command>cd libncftp &&
|
<para><screen><command>make -C libncftp shared &&
|
||||||
make shared &&
|
make -C libncftp soinstall</command></screen>
|
||||||
make soinstall</command></screen>
|
These commands make and install the dynamic library <filename
|
||||||
These commands make and install the dynamic library libncftp which is then used to link against when compiling the main program.</para>
|
class="libraryfile">libncftp</filename> which is then used to link
|
||||||
|
against when compiling the main program.</para>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
<title>Installation of <application>Nc<acronym>FTP</acronym></application></title>
|
<title>Installation of <application>Nc<acronym>FTP</acronym></application></title>
|
||||||
|
|
||||||
<para>There are two ways to build <application>Nc<acronym>FTP</acronym></application>. The first
|
<para>There are two ways to build <application>Nc<acronym>FTP</acronym></application>. The first
|
||||||
(and optimal) way, builds most of the functionality as a shared library and
|
(and optimal) way builds most of the functionality as a shared library and
|
||||||
then builds and installs the program linked against this library. The second
|
then builds and installs the program linked against this library. The second
|
||||||
method simply links all of the functionality into the binary statically. This
|
method simply links all of the functionality into the binary statically. This
|
||||||
doesn't make the dynamic library available for linking by other
|
doesn't make the dynamic library available for linking by other
|
||||||
applications. You need to choose which method best suits you. Note
|
applications. You need to choose which method best suits you. Note
|
||||||
that the second method does <emphasis>not</emphasis> create an entirely
|
that the second method does <emphasis>not</emphasis> create an entirely
|
||||||
statically linked binary; only the <filename>libncftp</filename> parts are
|
statically linked binary; only the <filename class="libraryfile">libncftp</filename> parts are
|
||||||
statically linked in, in this case. Be aware that building and using the shared
|
statically linked in, in this case. Be aware that building and using the shared
|
||||||
library is covered by the Clarified Artistic License; however, developing
|
library is covered by the Clarified Artistic License; however, developing
|
||||||
applications that utilize the shared library is subject to a different license.
|
applications that utilize the shared library is subject to a different license.
|
||||||
@ -18,15 +18,13 @@ applications that utilize the shared library is subject to a different license.
|
|||||||
method, run the following commands:</para>
|
method, run the following commands:</para>
|
||||||
|
|
||||||
<screen><userinput><command>./configure --prefix=/usr &&
|
<screen><userinput><command>./configure --prefix=/usr &&
|
||||||
cd libncftp &&
|
make -C libncftp shared &&
|
||||||
make shared &&
|
make -C libncftp soinstall &&
|
||||||
make soinstall &&
|
|
||||||
cd .. &&
|
|
||||||
make &&
|
make &&
|
||||||
make install</command></userinput></screen>
|
make install</command></userinput></screen>
|
||||||
|
|
||||||
<para>To install <application>Nc<acronym>FTP</acronym></application> using the second method (with
|
<para>To install <application>Nc<acronym>FTP</acronym></application> using the second method (with
|
||||||
the <filename>libncftp</filename> functionality linked in statically) run the
|
the <filename class="libraryfile">libncftp</filename> functionality linked in statically) run the
|
||||||
following commands:</para>
|
following commands:</para>
|
||||||
|
|
||||||
<screen><userinput><command>./configure --prefix=/usr &&
|
<screen><userinput><command>./configure --prefix=/usr &&
|
||||||
@ -34,4 +32,3 @@ make &&
|
|||||||
make install</command></userinput></screen>
|
make install</command></userinput></screen>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<!ENTITY ncftp-exp SYSTEM "ncftp-exp.xml">
|
<!ENTITY ncftp-exp SYSTEM "ncftp-exp.xml">
|
||||||
<!ENTITY ncftp-config SYSTEM "ncftp-config.xml">
|
<!ENTITY ncftp-config SYSTEM "ncftp-config.xml">
|
||||||
<!ENTITY ncftp-desc SYSTEM "ncftp-desc.xml">
|
<!ENTITY ncftp-desc SYSTEM "ncftp-desc.xml">
|
||||||
<!ENTITY ncftp-version "3.1.6">
|
<!ENTITY ncftp-version "3.1.7">
|
||||||
<!ENTITY ncftp-download-http "">
|
<!ENTITY ncftp-download-http "http://gd.tuwien.ac.at/infosys/clients/ftp/ncftp/ncftp-&ncftp-version;-src.tar.bz2">
|
||||||
<!ENTITY ncftp-download-ftp "ftp://ftp.ncftp.com/ncftp/ncftp-&ncftp-version;-src.tar.bz2">
|
<!ENTITY ncftp-download-ftp "ftp://ftp.ncftp.com/ncftp/ncftp-&ncftp-version;-src.tar.bz2">
|
||||||
<!ENTITY ncftp-size "396 KB">
|
<!ENTITY ncftp-size "389 KB">
|
||||||
<!ENTITY ncftp-buildsize "5.2 MB">
|
<!ENTITY ncftp-buildsize "5.2 MB">
|
||||||
<!ENTITY ncftp-time "0.26 SBU">
|
<!ENTITY ncftp-time "0.38 SBU">
|
||||||
|
@ -12,7 +12,7 @@ who wrote what.</para>
|
|||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
|
||||||
<listitem><para>January 31st, 2004 [igor]: Updated to
|
<listitem><para>January 31st, 2004 [igor]: Updated to
|
||||||
GnuPG-1.2.4.</para></listitem>
|
GnuPG-1.2.4 and NcFTP-3.1.7.</para></listitem>
|
||||||
|
|
||||||
<listitem><para>January 30th, 2004 [igor]: Updated to
|
<listitem><para>January 30th, 2004 [igor]: Updated to
|
||||||
XSane-0.92.</para></listitem>
|
XSane-0.92.</para></listitem>
|
||||||
|
Loading…
Reference in New Issue
Block a user