Changeset e867a12 for networking


Ignore:
Timestamp:
11/20/2011 06:37:03 AM (12 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2b95bda
Parents:
bcef05b
Message:

Added libtirpc-0.2.2.
Restored portmap-6.0.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8989 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
networking
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • networking/netlibs/libtirpc.xml

    rbcef05b re867a12  
    3232    <para>The <application>libtirpc</application> package contains
    3333    libraries that support programs that use the Remote Procedure Call (RPC)
    34     API.</para>
     34    API. It replaces the RPC, but not the NIS library entries that
     35    used to be in glibc.</para>
    3536
    3637    &lfs70_checked;
     
    6162    <itemizedlist spacing='compact'>
    6263      <listitem>
     64        <para>Required header tar file (Add rpc/nis headers):
     65        <ulink
     66        url="&sources-anduin-other;/rpcnis-headers.tar.bz2"/></para>
     67      </listitem>
     68      <listitem>
    6369        <para>Required Patch (Remove nis dependencies):
    6470        <ulink
    65         url="&patch-root;/libtirpc-&libtirpc-version;-remove-nis-1.patch"/></para>
     71        url="&patch-root;/libtirpc-&libtirpc-version;-remove-nis-2.patch"/></para>
    6672      </listitem>
    6773    </itemizedlist>
     
    8591    commands:</para>
    8692
    87 <screen><userinput>patch -Np1 -i ../libtirpc-&libtirpc-version;-remove-nis-1.patch &amp;&amp;
     93<screen><userinput>tar -xvf ../rpcnis-headers.tar.bz2 -C /usr/include &amp;&amp;
     94patch -Np1 -i ../libtirpc-&libtirpc-version;-remove-nis-2.patch &amp;&amp;
    8895autoreconf                &amp;&amp;
    8996./configure --prefix=/usr &amp;&amp;
     
    95102
    96103<screen role='root'><userinput>make install</userinput></screen>
     104
     105  </sect2>
     106
     107  <sect2 role="commands">
     108    <title>Command Explanations</title>
     109
     110    <para><userinput>tar -xvf ../rpcnis-headers.tar.bz2 -C
     111    /usr/include</userinput>: This command replaces the rpc and nis header
     112    files no longer installed by <application>glibc</application>.  If the
     113    headers have already been added by other means, this will only overwrite
     114    them and not do any harm.</para>
     115
     116    <para><userinput>patch -Np1 -i
     117    ../libtirpc-&libtirpc-version;-remove-nis-2.patch</userinput>: This patch
     118    removes references to nis functions no longer in
     119    <application>glibc</application>.</para>
    97120
    98121  </sect2>
  • networking/netlibs/netlibs.xml

    rbcef05b re867a12  
    2727  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libproxy.xml"/>
    2828  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libsoup.xml"/>
     29  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libtirpc.xml"/>
    2930  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="neon.xml"/>
    3031
  • networking/netprogs/netprogs.xml

    rbcef05b re867a12  
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="netfs.xml"/>
    3232  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ntp.xml"/>
    33 <!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="portmap.xml"/> -->
     33  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="portmap.xml"/>
    3434<!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="rsync-client.xml"/> -->
    3535  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="rsync.xml"/>
  • networking/netprogs/portmap.xml

    rbcef05b re867a12  
    4747    daemons such as NFS and NIS.</para>
    4848
     49    &lfs70_checked;
     50
    4951    <bridgehead renderas="sect3">Package Information</bridgehead>
    5052    <itemizedlist spacing="compact">
     
    7274
    7375    <bridgehead renderas="sect4">Required</bridgehead>
    74     <para role="required"><xref linkend="tcpwrappers"/></para>
     76    <para role="required">
     77      <xref linkend="libtirpc"/>
     78    </para>
     79
     80    <bridgehead renderas="sect4">Optional</bridgehead>
     81    <para role="optional">
     82      <xref linkend="tcpwrappers"/>
     83    </para>
    7584
    7685    <para condition="html" role="usernotes">User Notes:
     
    92101    commands:</para>
    93102
    94 <screen><userinput>make</userinput></screen>
     103<screen><userinput>LDLIBS=-ltirpc make</userinput></screen>
     104
     105    <para>Note that the LDLIBS environment variable must be before the
     106    <command>make</command> command.</para>
    95107
    96108    <para>If you want the portmap daemon to use a uid/gid other than the
    97109    defaults, pass DAEMON_UID=x and DAEMON_GID=y as shown below:</para>
    98     <para><command>make DAEMON_UID=x DAEMON_GID=y</command></para>
     110
     111    <para><command>LDLIBS=-ltirpc make DAEMON_UID=x DAEMON_GID=y</command></para>
     112
     113    <para>If you want to build the portmap daemon without
     114    <application>tcpwrappers</application>, add
     115    <userinput>NO_TCP_WRAPPER=true</userinput> to the make line as shown below:</para>
     116
     117    <para><command>LDLIBS=-ltirpc make NO_TCP_WRAPPER=true</command></para>
    99118
    100119    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
Note: See TracChangeset for help on using the changeset viewer.