Changeset b15e2b7


Ignore:
Timestamp:
03/17/2012 01:30:58 PM (12 years ago)
Author:
Krejzi <krejzi@…>
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:
0568701
Parents:
6916f12
Message:

liboauth 0.9.5

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r6916f12 rb15e2b7  
    123123<!ENTITY heimdal-version              "1.4">
    124124<!ENTITY libcap2-version              "2.22">
    125 <!ENTITY liboauth-version             "0.9.4">
     125<!ENTITY liboauth-version             "0.9.5">
    126126<!ENTITY mitkrb-version               "1.10">
    127127<!ENTITY nettle-version               "2.4">
  • introduction/welcome/changelog.xml

    r6916f12 rb15e2b7  
    5151          <para>[krejzi] - MesaLib 8.0.1.</para>
    5252        </listitem>
     53        <listitem>
     54          <para>[krejzi] - liboauth 0.9.5.</para>
     55        </listitem>
    5356      </itemizedlist>
    5457    </listitem>
  • postlfs/security/liboauth.xml

    r6916f12 rb15e2b7  
    77  <!ENTITY liboauth-download-http "http://downloads.sourceforge.net/liboauth/liboauth-&liboauth-version;.tar.gz">
    88  <!ENTITY liboauth-download-ftp  " ">
    9   <!ENTITY liboauth-md5sum        "973ded7a1af348c5bfe4e3b6b7e47bd3">
    10   <!ENTITY liboauth-size          "449 KB">
    11   <!ENTITY liboauth-buildsize     "3.5 MB">
     9  <!ENTITY liboauth-md5sum        "2a8e01914dc85f297ef69c1ab300d0ec">
     10  <!ENTITY liboauth-size          "416 KB">
     11  <!ENTITY liboauth-buildsize     "4.0 MB">
    1212  <!ENTITY liboauth-time          "less than 0.1 SBU">
    1313]>
     
    3030    <title>Introduction to liboauth</title>
    3131
    32     <para><application>Liboauth</application> liboauth is a collection of POSIX-c
     32    <para><application>Liboauth</application> is a collection of POSIX-C
    3333    functions implementing the OAuth Core RFC 5849 standard. Liboauth provides
    3434    functions to escape and encode parameters according to OAuth specification and
     
    3636    well as perform HTTP requests.</para>
    3737
    38     &lfs70_built;
     38    &lfs70_checked;
    3939
    4040    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    6363
    6464    <bridgehead renderas="sect4">Required</bridgehead>
    65     <para role="required"><xref linkend="curl"/></para>
     65    <para role="required">
     66      <xref linkend="curl"/> and
     67      <xref linkend="openssl"/> or <xref linkend="nss"/>
     68    </para>
     69
     70    <bridgehead renderas="sect4">Optional</bridgehead>
     71    <para role="optional">
     72      <xref linkend="doxygen"/> (to build documentation).
     73    </para>
    6674
    6775    <para condition="html" role="usernotes">User Notes:
     
    7987make</userinput></screen>
    8088
     89    <para>If you have <xref linkend="doxygen"/>, issue <command>make dox</command>
     90    to build documentation.</para>
     91
    8192    <para>To test the results, issue: <command>make check</command>.</para>
    8293
     
    8596<screen role="root"><userinput>make install</userinput></screen>
    8697
     98    <para>If you have built documentation previously, install it with following
     99    commands as the <systemitem class="username">root</systemitem> user:</para>
     100
     101<screen role="root">
     102<userinput>mkdir -pv /usr/share/doc/liboauth-&liboauth-version; &amp;&amp;
     103cp -rv doc/html/* /usr/share/doc/liboauth-&liboauth-version;</userinput>
     104</screen>
     105
    87106  </sect2>
    88107
     
    90109    <title>Command Explanations</title>
    91110
    92     <para><option>--enable-static=no</option>: This switch prevents the static
    93     libraries being installed.</para>
     111    <para><option>--disable-static</option>: This switch prevents static
     112    libraries from being installed.</para>
     113
     114    <para><option>--enable-nss</option>: Use NSS instead of OpenSSL.</para>
    94115
    95116  </sect2>
     
    118139        <term><filename class='libraryfile'>liboauth.{so,a}</filename></term>
    119140        <listitem>
    120           <para>contains functions that .....</para>
     141          <para>provides functions to escape and encode stings according to
     142          OAuth specifications and offers high-level functionality built
     143          on top to sign requests or verify signatures using either NSS or
     144          OpenSSL for calculating the hash/signatures.</para>
    121145          <indexterm zone="liboauth liboauth-lib">
    122146            <primary sortas="c-liboauth">liboauth.{so,a}</primary>
Note: See TracChangeset for help on using the changeset viewer.