libmatheval.git -

summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat
-rw-r--r--Makefile.am 4
-rw-r--r--NEWS 10
-rw-r--r--README 4
-rw-r--r--configure.in 8
-rw-r--r--doc/Makefile.am 4
-rw-r--r--doc/libmatheval.texi 4
-rw-r--r--lib/Makefile.am 4
-rw-r--r--lib/common.h 4
-rw-r--r--lib/error.c 4
-rw-r--r--lib/error.h 4
-rw-r--r--lib/g77_interface.c 4
-rw-r--r--lib/matheval.c 4
-rw-r--r--lib/matheval.h 4
-rw-r--r--lib/node.c 4
-rw-r--r--lib/node.h 4
-rw-r--r--lib/parser.y 8
-rw-r--r--lib/scanner.l 8
-rw-r--r--lib/symbol_table.c 4
-rw-r--r--lib/symbol_table.h 4
-rw-r--r--lib/xmalloc.c 4
-rw-r--r--lib/xmalloc.h 4
-rw-r--r--lib/xmath.c 4
-rw-r--r--lib/xmath.h 4
-rw-r--r--libmatheval.pc.in 6
-rw-r--r--tests/Makefile.am 4
-rw-r--r--tests/basics.at 4
-rw-r--r--tests/bin_ops.at 4
-rw-r--r--tests/constants.at 4
-rw-r--r--tests/functions.at 4
-rw-r--r--tests/matheval.c 4
-rw-r--r--tests/matheval.sh.in 4
-rw-r--r--tests/numbers.at 4
-rw-r--r--tests/package.m4 4
-rw-r--r--tests/testsuite.at 4
-rw-r--r--tests/un_ops.at 4
-rw-r--r--tests/variables.at 4
36 files changed, 85 insertions, 79 deletions
diff --git a/Makefile.am b/Makefile.am
index d468ef6..0fe415c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
-# Software Foundation, Inc.
+# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+# Free Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/NEWS b/NEWS
index 87d5ad2..f4f87ca 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,17 @@
-Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Aleksandar
-Samardzic
+Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+Aleksandar Samardzic
Copying and distribution of this file, with or without modification, are
permitted in any medium without royalty provided the copyright notice
and this notice are preserved.
+Version 1.1.8
+
+* Fixed bugs in the Fortran interface.
+* Updated pkg-config file.
+
+
Version 1.1.7
* Fixed wrong derivative calculation for erf function.
diff --git a/README b/README
index 9d29cbe..d6e196d 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Aleksandar
-Samardzic
+Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+Aleksandar Samardzic
Copying and distribution of this file, with or without modification, are
permitted in any medium without royalty provided the copyright notice
diff --git a/configure.in b/configure.in
index 65911de..0f24480 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
-dnl Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
-dnl Software Foundation, Inc.
+dnl Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+dnl Free Software Foundation, Inc.
dnl
dnl This file is part of GNU libmatheval
dnl
@@ -19,10 +19,10 @@ dnl <http://www.gnu.org/licenses/>.
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.53)
-AC_INIT([libmatheval],[1.1.7],[asamardzic@gnu.org])
+AC_INIT([libmatheval],[1.1.8],[asamardzic@gnu.org])
AC_CONFIG_AUX_DIR([config])
AC_SUBST([ac_aux_dir])
-AM_INIT_AUTOMAKE([libmatheval], [1.1.7])
+AM_INIT_AUTOMAKE([libmatheval], [1.1.8])
AC_CONFIG_SRCDIR([configure.in])
AM_CONFIG_HEADER([config.h])
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 54e50e5..cf810b9 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/doc/libmatheval.texi b/doc/libmatheval.texi
index d701cd8..a99a984 100644
--- a/doc/libmatheval.texi
+++ b/doc/libmatheval.texi
@@ -17,7 +17,7 @@
@ifnottex
This file documents GNU @code{libmatheval} library.
-Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008
+Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
Aleksandar Samardzic
Permission is granted to copy, distribute and/or modify this document
@@ -37,7 +37,7 @@ license is included in the section entitled ``Copying''.
@page
@vskip 0pt plus 1filll
-Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008
+Copyright @copyright{} 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
Aleksandar Samardzic
Permission is granted to copy, distribute and/or modify this document
diff --git a/lib/Makefile.am b/lib/Makefile.am
index d91f0f2..fa6704f 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
-# Software Foundation, Inc.
+# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+# Free Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/lib/common.h b/lib/common.h
index 6e9a489..89d5813 100644
--- a/lib/common.h
+++ b/lib/common.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/error.c b/lib/error.c
index d2bdc54..b6e012d 100644
--- a/lib/error.c
+++ b/lib/error.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/error.h b/lib/error.h
index 366ef39..9e44f62 100644
--- a/lib/error.h
+++ b/lib/error.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/g77_interface.c b/lib/g77_interface.c
index e5735a3..83202d2 100644
--- a/lib/g77_interface.c
+++ b/lib/g77_interface.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+ * Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/matheval.c b/lib/matheval.c
index 84e972e..e167e25 100644
--- a/lib/matheval.c
+++ b/lib/matheval.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/matheval.h b/lib/matheval.h
index 363a407..5857eb1 100644
--- a/lib/matheval.h
+++ b/lib/matheval.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/node.c b/lib/node.c
index 4bceb47..5dbd01d 100644
--- a/lib/node.c
+++ b/lib/node.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/node.h b/lib/node.h
index 02d4a8f..af06124 100644
--- a/lib/node.h
+++ b/lib/node.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/parser.y b/lib/parser.y
index e5b9335..d998e5a 100644
--- a/lib/parser.y
+++ b/lib/parser.y
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
@@ -21,8 +21,8 @@
%{
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* GNU libmatheval is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/lib/scanner.l b/lib/scanner.l
index 47809ea..610cd32 100644
--- a/lib/scanner.l
+++ b/lib/scanner.l
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
@@ -21,8 +21,8 @@
%{
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/symbol_table.c b/lib/symbol_table.c
index b13cff8..478668b 100644
--- a/lib/symbol_table.c
+++ b/lib/symbol_table.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/symbol_table.h b/lib/symbol_table.h
index 50df09d..29d2c34 100644
--- a/lib/symbol_table.h
+++ b/lib/symbol_table.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmalloc.c b/lib/xmalloc.c
index 760b7f9..aa04f0e 100644
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmalloc.h b/lib/xmalloc.h
index 79a1eeb..6a4bad1 100644
--- a/lib/xmalloc.h
+++ b/lib/xmalloc.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmath.c b/lib/xmath.c
index 2698ede..1310b2f 100644
--- a/lib/xmath.c
+++ b/lib/xmath.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmath.h b/lib/xmath.h
index 8a42f32..921e442 100644
--- a/lib/xmath.h
+++ b/lib/xmath.h
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free
- * Software Foundation, Inc.
+ * Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011
+ * Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/libmatheval.pc.in b/libmatheval.pc.in
index 8d38f6c..1ff58ac 100644
--- a/libmatheval.pc.in
+++ b/libmatheval.pc.in
@@ -1,5 +1,5 @@
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
@@ -24,7 +24,7 @@ includedir=@includedir@
Name: libmatheval
Description: Library of functions for evaluating mathematical expressions
-Version: 1.1.7
+Version: 1.1.8
Libs: -L${libdir} -lmatheval
Libs.private: @LEXLIB@ -lm
Cflags: -I${includedir}
diff --git a/tests/Makefile.am b/tests/Makefile.am
index f49abda..084e050 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,5 +1,5 @@
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/basics.at b/tests/basics.at
index 46b78e7..57756cf 100644
--- a/tests/basics.at
+++ b/tests/basics.at
@@ -1,7 +1,7 @@
# Checking the basics. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/bin_ops.at b/tests/bin_ops.at
index 99b8102..5f37cf7 100644
--- a/tests/bin_ops.at
+++ b/tests/bin_ops.at
@@ -1,7 +1,7 @@
# Checking the binary operations. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/constants.at b/tests/constants.at
index cd7cf48..36343b8 100644
--- a/tests/constants.at
+++ b/tests/constants.at
@@ -1,7 +1,7 @@
# Checking the constants. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/functions.at b/tests/functions.at
index 35ea7c0..c7d74ee 100644
--- a/tests/functions.at
+++ b/tests/functions.at
@@ -1,7 +1,7 @@
# Checking the functions. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/matheval.c b/tests/matheval.c
index 572d041..908ac20 100644
--- a/tests/matheval.c
+++ b/tests/matheval.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+ * Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/tests/matheval.sh.in b/tests/matheval.sh.in
index 53056d9..0107f81 100644
--- a/tests/matheval.sh.in
+++ b/tests/matheval.sh.in
@@ -2,8 +2,8 @@
# @configure_input@
# Wrapper around a non installed matheval to make it work as an installed one.
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/numbers.at b/tests/numbers.at
index de6aeba..aaeaf56 100644
--- a/tests/numbers.at
+++ b/tests/numbers.at
@@ -1,7 +1,7 @@
# Checking the numbers. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/package.m4 b/tests/package.m4
index 8c329ab..ac69fc4 100644
--- a/tests/package.m4
+++ b/tests/package.m4
@@ -1,6 +1,6 @@
# Signature of the current package.
m4_define([AT_PACKAGE_NAME], [libmatheval])
m4_define([AT_PACKAGE_TARNAME], [libmatheval])
-m4_define([AT_PACKAGE_VERSION], [1.1.7])
-m4_define([AT_PACKAGE_STRING], [libmatheval 1.1.7])
+m4_define([AT_PACKAGE_VERSION], [1.1.8])
+m4_define([AT_PACKAGE_STRING], [libmatheval 1.1.8])
m4_define([AT_PACKAGE_BUGREPORT], [asamardzic@gnu.org])
diff --git a/tests/testsuite.at b/tests/testsuite.at
index ac708d1..c9247a4 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -1,7 +1,7 @@
# Main testsuite file. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/un_ops.at b/tests/un_ops.at
index 1e2230b..65446d4 100644
--- a/tests/un_ops.at
+++ b/tests/un_ops.at
@@ -1,7 +1,7 @@
# Checking the unary operations. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/tests/variables.at b/tests/variables.at
index e97bdb0..1b6a04b 100644
--- a/tests/variables.at
+++ b/tests/variables.at
@@ -1,7 +1,7 @@
# Checking the variables. -*- Autotest -*-
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-# Foundation, Inc.
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011 Free
+# Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
generated by cgit v1.2.3 (git 2.39.1) at 2025年10月04日 01:42:10 +0000

AltStyle によって変換されたページ (->オリジナル) /