diff options
author | Werner Koch <[email protected]> | 2020-10-02 14:38:18 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2020-10-02 14:38:18 +0000 |
commit | e12e5b3dabb5088bdba6551710956d47e34938f9 (patch) | |
tree | 80e747ecbe12246ebdb29693db5fdff72829f1f9 | |
parent | gpgconf,w32: Add manifest so we get the correct windows version. (diff) | |
download | gnupg-e12e5b3dabb5088bdba6551710956d47e34938f9.tar.gz gnupg-e12e5b3dabb5088bdba6551710956d47e34938f9.zip |
common,w32: Change copyright holder notice.
--
-rw-r--r-- | common/argparse.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/common/argparse.c b/common/argparse.c index c29f8e9da..c04cf830d 100644 --- a/common/argparse.c +++ b/common/argparse.c @@ -70,8 +70,22 @@ #else /* Used by GnuPG */ +/* GnuPG has always been a part of the GNU project and thus we have + * shown the FSF as holder of the copyright. We continue to do so for + * the reason that without the FSF the free software used all over the + * world would not have come into existence. However, under Windows + * we print a different copyright string with --version because the + * copyright assignments of g10 Code and Werner Koch were terminated + * many years ago, g10 Code is still the major contributor to the + * code, and Windows is not an FSF endorsed platform. Note that the + * list of copyright holders can be found in the AUTHORS file. */ + # define ARGPARSE_GPL_VERSION 3 +# ifdef HAVE_W32_SYSTEM +# define ARGPARSE_CRIGHT_STR "Copyright (C) 2020 g10 Code GmbH" +# else # define ARGPARSE_CRIGHT_STR "Copyright (C) 2020 Free Software Foundation, Inc." +# endif #endif /*GNUPG_MAJOR_VERSION*/ |