NameDateSize

..06-Jun-201676

acinclude.m4H A D13-May-201327.9 KiB

aclocal.m4H A D13-May-201337.3 KiB

AUTHORSH A D13-May-20131.1 KiB

BUGSH A D13-May-20133.3 KiB

ChangeLogH A D13-May-20132 MiB

compileH A D13-May-20137.1 KiB

config.guessH A D13-May-201343.8 KiB

config.subH A D13-May-201334.7 KiB

configureH A D13-May-2013491.6 KiB

configure.acH A D13-May-201320.3 KiB

COPYINGH A D22-Nov-201234.3 KiB

COPYING.LESSERH A D22-Nov-20127.5 KiB

depcompH A D13-May-201320.4 KiB

doc/H13-May-20139

examples/H13-May-20137

INSTALLH A D13-May-201327.4 KiB

install-shH A D13-May-201313.7 KiB

ltmain.shH A D13-May-2013277 KiB

m4/H13-May-20138

Makefile.amH A D13-May-20131.3 KiB

Makefile.inH A D13-May-201327.2 KiB

missingH A D13-May-201310.1 KiB

NEWSH A D13-May-201316.2 KiB

PATCHESH A D22-Nov-20120

READMEH A D13-May-20133.7 KiB

src/H13-May-2013247

tests/H13-May-2013175

TODOH A D13-May-201320.7 KiB

tools/H13-May-20135

tune/H13-May-20137

VERSIONH A D13-May-20136

README

1Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
2Contributed by the AriC and Caramel projects, INRIA.
3
4This file is part of the GNU MPFR Library.
5
6The GNU MPFR Library is free software; you can redistribute it and/or modify
7it under the terms of the GNU Lesser General Public License as published by
8the Free Software Foundation; either version 3 of the License, or (at your
9option) any later version.
10
11The GNU MPFR Library is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14License for more details.
15
16You should have received a copy of the GNU Lesser General Public License
17along with the GNU MPFR Library; see the file COPYING.LESSER.  If not, see
18http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
1951 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
20
21##############################################################################
22
23The GNU MPFR distribution contains the following files:
24(This does not apply to code retrieved by Subversion.)
25
26AUTHORS         - the authors of the library
27BUGS            - bugs in MPFR - please read this file!
28COPYING         - the GNU General Public License, version 3
29COPYING.LESSER  - the GNU Lesser General Public License, version 3
30ChangeLog       - the log of changes
31INSTALL         - how to install MPFR (see also mpfr.texi)
32Makefile*       - files for building the library
33NEWS            - new features with respect to previous versions
34PATCHES         - empty file (until patches are applied)
35README          - this file
36TODO            - what remains to do (any help is welcome!)
37VERSION         - version of MPFR (next release version if taken by Subversion)
38ac*.m4          - automatic configuration files
39compile         - auxiliary installation file
40config.*        - auxiliary installation files
41configure*      - configuration files
42depcomp         - auxiliary installation file
43doc/            - directory containing the documentation (manual, FAQ)
44examples/       - directory containing examples
45install-sh      - installation file
46ltmain.sh       - auxiliary installation file
47m4/             - directory containing additional configuration files
48missing         - auxiliary installation file
49src/            - directory containing the MPFR source
50tests/          - directory containing the testsuite (for "make check")
51tools/          - directory containing various tools
52tune/           - directory containing files for tuning MPFR
53
54According to the special exception to the GNU General Public License,
55the autotools files compile, config.sub, config.guess, ltmain.sh,
56m4/libtool.m4 and missing are distributed under the same licence of
57GNU MPFR.
58
59
60You can get the latest source code by Subversion at INRIAGForge:
61
62  svn checkout svn://scm.gforge.inria.fr/svn/mpfr/trunk mpfr
63
64or
65
66  svn checkout https://scm.gforge.inria.fr/svn/mpfr/trunk mpfr
67
68(the last argument can be any directory name). You can use
69
70  svn ls svn://scm.gforge.inria.fr/svn/mpfr/branches
71  svn ls svn://scm.gforge.inria.fr/svn/mpfr/tags
72
73to get the list of branches or tags (releases), then checkout a
74particular branch or tag instead of the trunk. Alternatively, you
75can now use the "https:" scheme (a.k.a. DAV) instead of "svn:".
76For more information about Subversion, please see:
77
78  * http://svnbook.red-bean.com/ (the official Subversion book);
79  * http://gcc.gnu.org/wiki/SvnHelp (written for GCC developers,
80    but interesting general information can be found there);
81  * http://subversion.apache.org/faq.html (the Subversion FAQ).
82
83Subversion users should read the file "doc/README.dev" (provided via
84SVN only).
85