aboutsummaryrefslogtreecommitdiffstats
path: root/jnlib
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2001-04-02 08:40:32 +0000
committerWerner Koch <[email protected]>2001-04-02 08:40:32 +0000
commitbf6779bf7408dcfa67cc5cdd78590c31878b0035 (patch)
tree13935dffeece71ebbb2ca8947d7f2da39a248500 /jnlib
parentGive access to key capabilities (diff)
downloadgpgme-bf6779bf7408dcfa67cc5cdd78590c31878b0035.tar.gz
gpgme-bf6779bf7408dcfa67cc5cdd78590c31878b0035.zip
Release 0.2.1gpgme-0-2-1
Diffstat (limited to 'jnlib')
-rw-r--r--jnlib/ChangeLog11
-rw-r--r--jnlib/Makefile.am19
-rw-r--r--jnlib/argparse.c2
-rw-r--r--jnlib/argparse.h2
-rw-r--r--jnlib/dotlock.c2
-rw-r--r--jnlib/dotlock.h2
-rw-r--r--jnlib/libjnlib-config.h2
-rw-r--r--jnlib/logging.c2
-rw-r--r--jnlib/logging.h2
-rw-r--r--jnlib/mischelp.h2
-rw-r--r--jnlib/stringhelp.c2
-rw-r--r--jnlib/stringhelp.h2
-rw-r--r--jnlib/types.h2
-rw-r--r--jnlib/xmalloc.c2
-rw-r--r--jnlib/xmalloc.h2
15 files changed, 42 insertions, 14 deletions
diff --git a/jnlib/ChangeLog b/jnlib/ChangeLog
index ed5e20a4..b9a1c2bb 100644
--- a/jnlib/ChangeLog
+++ b/jnlib/ChangeLog
@@ -39,3 +39,14 @@ Mon Jan 24 13:04:28 CET 2000 Werner Koch <[email protected]>
(log_printf): New.
(do_logv): Add kludge to insert LFs.
+
+ Copyright 2000 Werner Koch (dd9jn)
+ Copyright 2001 g10 Code GmbH
+
+ This file is free software; as a special exception the author gives
+ unlimited permission to copy and/or distribute it, with or without
+ modifications, as long as this notice is preserved.
+
+ This file is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/jnlib/Makefile.am b/jnlib/Makefile.am
index 5d609691..1049f3c2 100644
--- a/jnlib/Makefile.am
+++ b/jnlib/Makefile.am
@@ -1,3 +1,21 @@
+# Copyright (C) 1999, 2000, 2001 Feee Software Soundation, Inc.
+#
+# This file is part of GnuPG
+#
+# GnuPG is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GnuPG 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+
## Process this file with automake to produce Makefile.in
EXTRA_DIST = README
@@ -16,4 +34,3 @@ libjnlib_a_SOURCES = libjnlib-config.h \
types.h mischelp.h
-
diff --git a/jnlib/argparse.c b/jnlib/argparse.c
index 0384c5d2..ba635585 100644
--- a/jnlib/argparse.c
+++ b/jnlib/argparse.c
@@ -1,5 +1,5 @@
/* [argparse.c wk 17.06.97] Argument Parser for option handling
- * Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+ * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/argparse.h b/jnlib/argparse.h
index 3668a21c..e8922faa 100644
--- a/jnlib/argparse.h
+++ b/jnlib/argparse.h
@@ -1,5 +1,5 @@
/* argparse.h
- * Copyright (C) 1998,1999 Free Software Foundation, Inc.
+ * Copyright (C) 1998,1999,2000,2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/dotlock.c b/jnlib/dotlock.c
index 8e61f7a0..772c770e 100644
--- a/jnlib/dotlock.c
+++ b/jnlib/dotlock.c
@@ -1,5 +1,5 @@
/* dotlock.c - dotfile locking
- * Copyright (C) 1998,2000 Free Software Foundation, Inc.
+ * Copyright (C) 1998,2000,2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/dotlock.h b/jnlib/dotlock.h
index d54219e2..7d45c828 100644
--- a/jnlib/dotlock.h
+++ b/jnlib/dotlock.h
@@ -1,5 +1,5 @@
/* dotlock.h
- * Copyright (C) 2000 Free Software Foundation, Inc.
+ * Copyright (C) 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/libjnlib-config.h b/jnlib/libjnlib-config.h
index 4cc57b29..de8e6a47 100644
--- a/jnlib/libjnlib-config.h
+++ b/jnlib/libjnlib-config.h
@@ -1,5 +1,5 @@
/* libjnlib-config.h - local configuration of the jnlib functions
- * Copyright (C) 2000 Free Software Foundation, Inc.
+ * Copyright (C) 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/logging.c b/jnlib/logging.c
index 7ab2cb57..f03c5c45 100644
--- a/jnlib/logging.c
+++ b/jnlib/logging.c
@@ -1,5 +1,5 @@
/* logging.c - useful logging functions
- * Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+ * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/logging.h b/jnlib/logging.h
index 5084b71b..83158f0b 100644
--- a/jnlib/logging.h
+++ b/jnlib/logging.h
@@ -1,5 +1,5 @@
/* logging.h
- * Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/mischelp.h b/jnlib/mischelp.h
index 684a6973..58c9250e 100644
--- a/jnlib/mischelp.h
+++ b/jnlib/mischelp.h
@@ -1,5 +1,5 @@
/* mischelp.h
- * Copyright (C) 1999 Free Software Foundation, Inc.
+ * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/stringhelp.c b/jnlib/stringhelp.c
index 59345f27..f222a627 100644
--- a/jnlib/stringhelp.c
+++ b/jnlib/stringhelp.c
@@ -1,5 +1,5 @@
/* stringhelp.c - standard string helper functions
- * Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+ * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/stringhelp.h b/jnlib/stringhelp.h
index ebdd7b27..5d124e40 100644
--- a/jnlib/stringhelp.h
+++ b/jnlib/stringhelp.h
@@ -1,5 +1,5 @@
/* stringhelp.h
- * Copyright (C) 1998,1999 Free Software Foundation, Inc.
+ * Copyright (C) 1998,1999,2000,2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/types.h b/jnlib/types.h
index a5d0e42d..230d1502 100644
--- a/jnlib/types.h
+++ b/jnlib/types.h
@@ -1,5 +1,5 @@
/* types.h
- * Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/xmalloc.c b/jnlib/xmalloc.c
index 34ecc28a..1cfaab9f 100644
--- a/jnlib/xmalloc.c
+++ b/jnlib/xmalloc.c
@@ -1,5 +1,5 @@
/* xmalloc.c - standard malloc wrappers
- * Copyright (C) 1999 Free Software Foundation, Inc.
+ * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
diff --git a/jnlib/xmalloc.h b/jnlib/xmalloc.h
index 4dd88ec2..150ef366 100644
--- a/jnlib/xmalloc.h
+++ b/jnlib/xmalloc.h
@@ -1,5 +1,5 @@
/* xmalloc.h
- * Copyright (C) 1999 Free Software Foundation, Inc.
+ * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*