Changeset a367fbc


Ignore:
Timestamp:
03/22/2010 01:32:22 PM (14 years ago)
Author:
Randy McMurchy <randy@…>
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:
7dc7b56
Parents:
53fb87c4
Message:

Removed parameters from the Guile configure command as they are all the default settings

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • general/prog/guile.xml

    r53fb87c4 ra367fbc  
    99  <!ENTITY guile-md5sum        "991b5b3efcbbc3f7507d05bc42f80a5e">
    1010  <!ENTITY guile-size          "3.9 MB">
    11   <!ENTITY guile-buildsize     "47 MB (additional 40 MB to install all the docs)">
    12   <!ENTITY guile-time          "0.7 SBU">
     11  <!ENTITY guile-buildsize     "47 MB (additional 50 MB to install all the docs)">
     12  <!ENTITY guile-time          "1.2 SBU">
    1313]>
    1414
     
    8787    commands:</para>
    8888
    89 <screen><userinput>./configure --prefix=/usr --enable-posix \
    90     --disable-static --enable-networking --enable-regex &amp;&amp;
    91 make</userinput></screen>
     89<!-- <screen><userinput>./configure -prefix=/usr -enable-posix \
     90    -disable-static -enable-networking -enable-regex &amp;&amp;
     91make</userinput></screen> -->
     92
     93<screen><userinput>./configure --prefix=/usr &amp;&amp;
     94make &amp;&amp;
     95
     96makeinfo --plaintext -o doc/goops/goops.txt doc/goops/goops.texi &amp;&amp;
     97makeinfo --plaintext -o doc/r5rs/r5rs.txt   doc/r5rs/r5rs.texi   &amp;&amp;
     98makeinfo --plaintext -o doc/ref/guile.txt   doc/ref/guile.texi   &amp;&amp;
     99makeinfo --plaintext -o doc/tutorial/guile-tut.txt \
     100                        doc/tutorial/guile-tut.texi</userinput></screen>
    92101
    93102    <para>If you have <xref linkend="tetex"/> installed and wish to
     
    99108  make -k -C doc/$DIRNAME pdf ps html
    100109done &amp;&amp;
    101 
    102 makeinfo --plaintext -o doc/goops/goops.txt doc/goops/goops.texi &amp;&amp;
    103 makeinfo --plaintext -o doc/r5rs/r5rs.txt doc/r5rs/r5rs.texi &amp;&amp;
    104 makeinfo --plaintext -o doc/ref/guile.txt doc/ref/guile.texi &amp;&amp;
    105 makeinfo --plaintext -o doc/tutorial/guile-tut.txt \
    106     doc/tutorial/guile-tut.texi &amp;&amp;
    107 
    108110unset DIRNAME</userinput></screen>
    109111
     
    116118find examples -name "Makefile*" -exec rm {} \; &amp;&amp;
    117119install -v -m755 -d /usr/share/doc/guile-&guile-version; &amp;&amp;
    118 cp -v -R examples   /usr/share/doc/guile-&guile-version;</userinput></screen>
     120cp -v -R examples   /usr/share/doc/guile-&guile-version; &amp;&amp;
     121
     122for DIRNAME in goops r5rs ref tutorial
     123do
     124  install -v -m755 -d /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}/$DIRNAME &amp;&amp;
     125  install -v -m644    doc/$DIRNAME/*.txt \
     126                      /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}/$DIRNAME &amp;&amp;
     127done &amp;&amp;
     128unset DIRNAME</userinput></screen>
    119129
    120130    <para>If you built the alternate formats of the documentation, install them
     
    124134<screen role="root"><userinput>for DIRNAME in goops r5rs ref tutorial
    125135do
    126   install -v -m755 -d /usr/share/doc/guile-&guile-version;/$DIRNAME/html
    127   install -v -m644 doc/$DIRNAME/*.{pdf,ps,dvi,txt} \
    128       /usr/share/doc/guile-&guile-version;/$DIRNAME
    129   if [ -d doc/$DIRNAME/$DIRNAME.html ]; then
    130     install -v -m644 doc/$DIRNAME/$DIRNAME.html/* \
    131         /usr/share/doc/guile-&guile-version;/$DIRNAME/html
     136  install -v -m755 -d /usr/share/doc/guile-&guile-version;/$DIRNAME/html &amp;&amp;
     137  install -v -m644    doc/$DIRNAME/*.{pdf,ps,dvi} \
     138                      /usr/share/doc/guile-&guile-version;/$DIRNAME      &amp;&amp;
     139  if [ -d             doc/$DIRNAME/$DIRNAME.html ]; then
     140    install -v -m644  doc/$DIRNAME/$DIRNAME.html/* \
     141                      /usr/share/doc/guile-&guile-version;/$DIRNAME/html &amp;&amp;
    132142  fi
    133143done &amp;&amp;
    134144
    135145install -v -m644 doc/goops/hierarchy.{eps,png} \
    136     /usr/share/doc/guile-&guile-version;/goops &amp;&amp;
     146                 /usr/share/doc/guile-&guile-version;/goops    &amp;&amp;
    137147install -v -m644 doc/ref/guile.html/* \
    138     /usr/share/doc/guile-&guile-version;/ref/html &amp;&amp;
     148                 /usr/share/doc/guile-&guile-version;/ref/html &amp;&amp;
    139149install -v -m644 doc/tutorial/guile-tut.html/* \
    140     /usr/share/doc/guile-&guile-version;/tutorial/html</userinput></screen>
    141   </sect2>
    142 
     150                 /usr/share/doc/guile-&guile-version;/tutorial/html</userinput></screen>
     151  </sect2>
     152
     153  <!-- Commenting these out (as well as the actual build command) because they
     154       are the default. Examine configure.(ac,in) and you will see that if not
     155       specified, all 3 of these options are enabled by default.
    143156  <sect2 role="commands">
    144157    <title>Command Explanations</title>
    145158
    146     <para><option>--enable-posix</option>: Enable Posix interfaces.</para>
    147 
    148     <para><option>--enable-networking</option>: Enable networking interfaces.</para>
    149 
    150     <para><option>--enable-regex</option>: Enable regular expression interfaces.</para>   
    151 
    152   </sect2>
     159    <para><option>-enable-posix</option>: Enable Posix interfaces.</para>
     160
     161    <para><option>-enable-networking</option>: Enable networking interfaces.</para>
     162
     163    <para><option>-enable-regex</option>: Enable regular expression interfaces.</para>   
     164
     165  </sect2>
     166  -->
    153167
    154168  <sect2 role="content">
  • introduction/welcome/changelog.xml

    r53fb87c4 ra367fbc  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Removed parameters from the Guile configure command
     49          as they are all the default settings.</para>
     50        </listitem>
     51        <listitem>
    4852          <para>[randy] - Fixed broken documentation installation commands in
    4953          the SQLite instructions, thanks to Juan Antonio Moreno Carmona for
Note: See TracChangeset for help on using the changeset viewer.