Changeset 214b9ac for server


Ignore:
Timestamp:
12/19/2005 12:50:34 AM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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:
64868e0
Parents:
e87d57b
Message:

Updated to Samba-3.0.20b

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/major/samba3.xml

    re87d57b r214b9ac  
    77  <!ENTITY samba3-download-http "http://us1.samba.org/samba/ftp/samba-&samba3-version;.tar.gz">
    88  <!ENTITY samba3-download-ftp  "ftp://ftp.samba.org/pub/samba/samba-&samba3-version;.tar.gz">
    9   <!ENTITY samba3-md5sum        "68e72ab16334c329901816febc43217a">
     9  <!ENTITY samba3-md5sum        "39c0cae08fe0224cb003aa0af97d3050">
    1010  <!ENTITY samba3-size          "17.1 MB">
    11   <!ENTITY samba3-buildsize     "146 MB">
     11  <!ENTITY samba3-buildsize     "177.4 MB">
    1212  <!ENTITY samba3-time          "2.5 SBU">
    1313]>
     
    8282    <xref linkend="heimdal"/> or <xref linkend="mitkrb"/>,
    8383    <xref linkend="libxml2"/>,
    84     <xref linkend="mysql"/> or <xref linkend="postgresql"/>,
     84    <xref linkend="mysql"/>,
     85    <xref linkend="postgresql"/>,
    8586    <xref linkend="python"/> and
    8687    <ulink url="http://valgrind.kde.org/">Valgrind</ulink></para>
     
    110111
    111112<screen><userinput>cd source &amp;&amp;
     113sed -i "60s/lib\[2/lib[1/" python/setup.py &amp;&amp;
    112114./configure \
    113115    --prefix=/usr \
     
    123125    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    124126
     127<!-- Commenting out the need for /var/cache/samba as my testing has
     128     shown me that this directory is not used. Grepping the source
     129     tree also turns up nothing about 'cache/samba'. -Randy
    125130<screen role="root"><userinput>install -v -m755 -d /var/cache/samba &amp;&amp;
    126 make install &amp;&amp;
     131-->
     132
     133<screen role="root"><userinput>make install &amp;&amp;
    127134mv -v /usr/lib/samba/libsmbclient.so /usr/lib &amp;&amp;
    128135ln -v -sf ../libsmbclient.so /usr/lib/samba &amp;&amp;
     136ln -v -sf libsmbclient.so /usr/lib/libsmbclient.so.0 &amp;&amp;
     137
    129138chmod -v 644 /usr/include/libsmbclient.h &amp;&amp;
     139
    130140install -v -m755 nsswitch/libnss_win{s,bind}.so /lib &amp;&amp;
    131141ln -v -sf libnss_winbind.so /lib/libnss_winbind.so.2 &amp;&amp;
    132142ln -v -sf libnss_wins.so /lib/libnss_wins.so.2 &amp;&amp;
     143
    133144if [ -f nsswitch/pam_winbind.so ]; then
    134145    install -v -m755 nsswitch/pam_winbind.so /lib/security
    135146fi &amp;&amp;
     147
    136148install -v -m644 ../examples/smb.conf.default /etc/samba &amp;&amp;
    137 install -v -m644 ../docs/*.pdf /usr/share/samba</userinput></screen>
     149
     150install -v -m755 -d /usr/share/doc/samba-&samba3-version; &amp;&amp;
     151install -v -m644 ../docs/*.pdf /usr/share/doc/samba-&samba3-version; &amp;&amp;
     152ln -v -s ../../samba/swat  /usr/share/doc/samba-3.0.20b</userinput></screen>
     153
     154  <para>If you passed the <option>--with-python</option> option to the
     155  <command>configure</command> script, issue the following command as the
     156  <systemitem class="username">root</systemitem> user to install the
     157  <application>Python</application> extensions:</para>
     158
     159<screen role="root"><userinput>make python_install</userinput></screen>
    138160
    139161  </sect2>
     
    141163  <sect2 role="commands">
    142164    <title>Command Explanations</title>
     165
     166    <para><command>sed -i "60s/lib\[2/lib[1/" python/setup.py</command>:
     167    This command is necessary to build the
     168    <application>Python</application> extensions. The
     169    <filename>setup.py</filename> file has a bug which causes the build to
     170    crash. This command fixes the bug.</para>
    143171
    144172    <para><parameter>--sysconfdir=/etc</parameter>: Sets the configuration
     
    165193    <command>man winbindd</command>.</para>
    166194
     195    <!-- I am convinced that this command is no longer necessary. -Randy
    167196    <para><command>install -v -d /var/cache/samba</command>: This directory is
    168197    needed for proper operation of the <command>smbd</command> and
    169198    <command>nmbd</command> daemons.</para>
     199    -->
    170200
    171201    <para><command>mv -v /usr/lib/samba/libsmbclient.so ...; ln -v -sf
Note: See TracChangeset for help on using the changeset viewer.