liboauth is a collection of POSIX-C functions implementing the OAuth Core RFC 5849 standard. Liboauth provides functions to escape and encode parameters according to OAuth specification and offers high-level functionality to sign requests or verify OAuth signatures as well as perform HTTP requests.
This package is known to build and work properly using an LFS-7.3 platform.
Download (HTTP): http://downloads.sourceforge.net/liboauth/liboauth-1.0.1.tar.gz
Download MD5 sum: 46881d24bc7107dc0c66ef250f03d95e
Download size: 492 KB
Estimated disk space required: 3.5 MB
Estimated build time: less than 0.1 SBU
cURL-7.30.0 and OpenSSL-1.0.1e or NSS-3.14.3
Doxygen-1.8.4 (to build documentation).
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/liboauth
Install liboauth by running the following commands:
./configure --prefix=/usr --disable-static && make
If you have Doxygen-1.8.4, issue make dox to build documentation.
To test the results, issue: make check.
Now, as the root user:
make install
If you have built documentation previously, install it with
following commands as the root
user:
mkdir -pv /usr/share/doc/liboauth-1.0.1 && cp -rv doc/html/* /usr/share/doc/liboauth-1.0.1
--disable-static: This
switch prevents installation of static versions of the libraries.
--enable-nss: Use this switch if you
want to use Mozilla NSS instead of OpenSSL.
Last updated on 2013-04-27 18:04:22 +0000