diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2003-01-17 14:59:48 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2003-01-17 14:59:48 +0000 |
commit | 2e10dc83f09f8af744b1f7d3644a2d1bbb420762 (patch) | |
tree | ea6894845d2ff275ba28278ebcfb67cfb88543c7 | |
parent | 7b809d142e26babd6be428c770ca38fd8d3235a5 (diff) | |
download | mpfr-2e10dc83f09f8af744b1f7d3644a2d1bbb420762.tar.gz |
added copyright notices and license statements
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2200 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r-- | BUGS | 22 | ||||
-rw-r--r-- | NEWS | 22 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | TODO | 23 | ||||
-rw-r--r-- | acinclude.m4 | 22 |
5 files changed, 93 insertions, 0 deletions
@@ -1,3 +1,25 @@ +Copyright 1999, 2001, 2002, 2003 Free Software Foundation. +Contributed by the Spaces project, INRIA Lorraine. + +This file is part of the MPFR Library. + +The MPFR Library is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or (at your +option) any later version. + +The MPFR Library is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with the MPFR Library; see the file COPYING.LIB. If not, write to +the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +MA 02111-1307, USA. + +############################################################################## + Probably many bugs. Known bugs: @@ -1,3 +1,25 @@ +Copyright 2000, 2001, 2002, 2003 Free Software Foundation. +Contributed by the Spaces project, INRIA Lorraine. + +This file is part of the MPFR Library. + +The MPFR Library is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2.1 of the License, or (at your +option) any later version. + +The MPFR Library is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with the MPFR Library; see the file COPYING.LIB. If not, write to +the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +MA 02111-1307, USA. + +############################################################################## + Changes from version 2001 to version 2.0.1: - new mathematical functions: acos, acosh, asin, asinh, atan, atanh, cosh, base-2 exponential and logarithm, base-10 logarithm, expm1, factorial, @@ -1,3 +1,6 @@ +Copyright 2000, 2001, 2002, 2003 Free Software Foundation. +Contributed by the Spaces project, INRIA Lorraine. + This file is part of the MPFR Library. The MPFR Library is free software; you can redistribute it and/or modify it @@ -16,6 +19,7 @@ along with the MPFR Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +############################################################################## The MPFR distribution contains the following files: (This does not apply to code retrieved by CVS.) @@ -1,3 +1,26 @@ +Copyright 1999, 2000, 2001, 2002, 2003 Free Software Foundation. +Contributed by the Spaces project, INRIA Lorraine. + +This file is part of the MPFR Library. + +The MPFR Library is free software; you can redistribute it and/or modify it +under the terms of the GNU Lesser General Public License (either version 2.1 +of the License, or, at your option, any later version) and the GNU General +Public License as published by the Free Software Foundation (most of MPFR is +under the former, some under the latter). + +The MPFR Library is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with the MPFR Library; see the file COPYING.LIB. If not, write to +the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. + +############################################################################## + Documentation: - add a description of the algorithms used + proof of correctness diff --git a/acinclude.m4 b/acinclude.m4 index 7fbc810c1..e4d5db91b 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1,3 +1,25 @@ +dnl MPFR specific autoconf macros + +dnl Copyright 2000, 2002, 2003 Free Software Foundation. +dnl Contributed by the Spaces project, INRIA Lorraine. +dnl +dnl This file is part of the MPFR Library. +dnl +dnl The MPFR Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 2.1 of the License, or (at +dnl your option) any later version. +dnl +dnl The MPFR Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. +dnl +dnl You should have received a copy of the GNU Lesser General Public License +dnl along with the MPFR Library; see the file COPYING.LIB. If not, write to +dnl the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +dnl MA 02111-1307, USA. + dnl autoconf 2.50 is necessary because of the use of AH_VERBATIM, dnl but it would be better to make the config file compatible with dnl both autoconf 2.13 and autoconf 2.50. |