[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r8938 - in /libdfp/trunk: Makefile.in README Versions Versions.def configure.ac



Author: ryanarn
Date: Tue Sep  8 10:31:08 2009
New Revision: 8938

Log:


	* Makefile.in: Updated comment to reflect update from 0.0.1 to 0.0.9.
	* configure.ac (AC_INIT): Updated version from 0.0.1 to 0.0.9.
	* README: Added two TODO chapters and clarified the intro paragraphs.
	* Versions.def: Update package versions for symbols.
	* Versions: Update package versions for symbols.

Modified:
    libdfp/trunk/Makefile.in
    libdfp/trunk/README
    libdfp/trunk/Versions
    libdfp/trunk/Versions.def
    libdfp/trunk/configure.ac

Modified: libdfp/trunk/Makefile.in
==============================================================================
--- libdfp/trunk/Makefile.in (original)
+++ libdfp/trunk/Makefile.in Tue Sep  8 10:31:08 2009
@@ -13,7 +13,7 @@
 
 STATIC_LIBRARY = @PACKAGE_NAME@.a
 
-# e.g. libdfp-0.0.1.so
+# e.g. libdfp-0.0.9.so
 SHARED_VERSION_LIBRARY = @PACKAGE_NAME@-@PACKAGE_VERSION@.so
 
 # e.g. libdfp.so.1

Modified: libdfp/trunk/README
==============================================================================
--- libdfp/trunk/README (original)
+++ libdfp/trunk/README Tue Sep  8 10:31:08 2009
@@ -36,6 +36,8 @@
 	  5.1  Configure Switches
 	6.  Source Tree Layout
 	7.  Make Rules
+	8.  Precision (TODO)
+	9.  Testing (make check) (TODO)
 
 	A.  History
 	B.  Acknowledgements
@@ -45,9 +47,9 @@
 
 The "Decimal Floating Point C Library" is an implementation of ISO/IEC
 Technical report  "ISO/IEC TR 24732" which describes the C-Language library
-routines necessary to support the decimal floating point data types
-introduced in IEEE 754-2008, namely _Decimal32, _Decimal64, and
-_Decimal128.
+routines necessary to provide the C library runtime support for decimal
+floating point data types introduced in IEEE 754-2008, namely _Decimal32,
+_Decimal64, and _Decimal128.
 
 ---------------------------------------------------------------------------
 1.1. ISO/IEC TR 24732
@@ -89,7 +91,8 @@
 trees.  All patches to libdecnumber should be sent to GCC.
 
 This library's copy of libdecnumber should be periodically synced with
-upstream GCC's version.
+upstream GCC's version.  This syncing is the responsibility of the Libdfp
+maintainer.
 
 Libbid was written by <TODO> (Intel).
 
@@ -97,7 +100,7 @@
 2. Availability
 
 Libdfp attempts to provide an encoding agnostic API to users based
-upon the _Decimal32, _Decimal64, and _Decimal128 data-types.  
+upon the _Decimal32, _Decimal64, and _Decimal128 data-types.
 
 Libdfp is available to be configured in the following combinations:
 

Modified: libdfp/trunk/Versions
==============================================================================
--- libdfp/trunk/Versions (original)
+++ libdfp/trunk/Versions Tue Sep  8 10:31:08 2009
@@ -1,5 +1,5 @@
 libdfp {
-  LIBDFP_0.0.1 {
+  LIBDFP_0.9 {
     decoded32;
     decoded64;
     decoded128;

Modified: libdfp/trunk/Versions.def
==============================================================================
--- libdfp/trunk/Versions.def (original)
+++ libdfp/trunk/Versions.def Tue Sep  8 10:31:08 2009
@@ -1,4 +1,4 @@
 libdfp {
-  LIBDFP_0.0.1
+  LIBDFP_0.9
   LIBDFP_PRIVATE
 }

Modified: libdfp/trunk/configure.ac
==============================================================================
--- libdfp/trunk/configure.ac (original)
+++ libdfp/trunk/configure.ac Tue Sep  8 10:31:08 2009
@@ -5,7 +5,7 @@
 # has a hard-coded 2.59 requirement and Libdfp doesn't really care, but can't
 # control libdecnumber.
 AC_PREREQ(2.59) 
-AC_INIT(libdfp, 0.0.1, rsa@xxxxxxxxxx)
+AC_INIT(libdfp, 0.0.9, rsa@xxxxxxxxxx)
 AC_CONFIG_SRCDIR([printf_dfp.c])
 
 # We don't use Automake so this is necessary.