71775ad8fc
* README: Refer to COPYING.LESSER and "each file" instead of COPYING. * COPYING.LESSER: New file. * gpgme.spec.in (%doc): Add COPYING.LESSER. * acinclude.m4, configure.ac, Makefile.am: Change license to LGPL 2.1 or later. * TODO: Add copyright notice. * README.CVS: Likewise. assuan/ 2004-12-07 Marcus Brinkmann <marcus@g10code.de> * README.1st: Add copyright notice. doc/ 2004-12-07 Marcus Brinkmann <marcus@g10code.de> * Makefile.am: Change license to LGPL. (gpgme_TEXINFOS): Replace gpl.texi with lesser.texi. * gpgme.texi: Change license to LGPL (also for documentation of GPGME's license). * lesser.texi: New file. * gpl.texi: File removed. gpgme/ 2004-12-07 Marcus Brinkmann <marcus@g10code.de> * putc_unlocked.c, funopen.c: I just claim copyright on these files and change their license to LGPL, because they are totally trivial wrapper functions. * isascii.c: Change copyright notice to the one from ctype/ctype.h in the GNU C Library (CVS Head 2004-10-10), where isascii is defined as a macro doing exactly the same as the function in this file. * memrchr.c: Update from the GNU C Library (CVS Head 2001-07-06). * stpcpy.c: Update from the GNU C Library (CVS Head 2004-10-10). * ath.c, ath-compat.c, ath.h, ath-pth.c, ath-pth-compat.c, ath-pthread.c, ath-pthread-compat.c, context.h, conversion.c, data.c, data-compat.c, data-fd.c, data.h, data-mem.c, data-stream.c, data-user.c, debug.c, debug.h, decrypt.c, decrypt-verify.c, delete.c, edit.c, encrypt.c, encrypt-sign.c, engine-backend.h, engine.c, engine-gpgsm.c, engine.h, error.c, export.c, genkey.c, get-env.c, gpgme.c, gpgme.h, import.c, io.h, key.c, keylist.c, mkstatus, Makefile.am, ops.h, op-support.c, passphrase.c, posix-io.c, posix-sema.c, posix-util.c, progress.c, rungpg.c, sema.h, sign.c, signers.c, trust-item.c, trustlist.c, util.h, verify.c, version.c, w32-io.c, w32-sema.c, w32-util.c, wait.c, wait-global.c, wait.h, wait-private.c, wait-user.c: Change license to LGPL. tests/ 2004-12-07 Marcus Brinkmann <marcus@g10code.de> * gpg/mkdemodirs: Add copyright notice. * gpgsm/Makefile.am, gpgsm/t-support.h, gpgsm/t-decrypt.c, gpgsm/t-encrypt.c, gpgsm/t-export.c, gpgsm/t-genkey.c, gpgsm/t-import.c, gpgsm/t-keylist.c, gpgsm/t-sign.c, gpgsm/t-verify.c, gpg/Makefile.am, gpg/t-decrypt.c, gpg/t-decrypt-verify.c, gpg/t-edit.c, gpg/t-encrypt.c, gpg/t-encrypt-sign.c, gpg/t-encrypt-sym.c, gpg/t-eventloop.c, gpg/t-export.c, gpg/t-genkey.c, gpg/t-import.c, gpg/t-keylist.c, gpg/t-keylist-sig.c, gpg/t-sign.c, gpg/t-signers.c, gpg/t-support.h, gpg/t-thread1.c, gpg/t-trustlist.c, gpg/t-verify.c, Makefile.am, t-data.c, t-engine-info.c, t-version.c: Change license to LGPL.
60 lines
2.5 KiB
Plaintext
60 lines
2.5 KiB
Plaintext
If you are building from CVS, run the script
|
|
|
|
./autogen.sh
|
|
|
|
first, to make sure that you have all the necessary maintainer tools
|
|
are installed and to build the actual configuration files. Then run
|
|
|
|
./configure --enable-maintainer-mode
|
|
|
|
followed by the usual make.
|
|
|
|
If autogen.sh complains about insufficient versions of the required
|
|
tools, or the tools are not installed, you may use environment
|
|
variables to override the default tool names:
|
|
|
|
AUTOMAKE_SUFFIX is used as a suffix for all tools from the automake
|
|
package. For example
|
|
AUTOMAKE_SUFFIX="-1.7" ./autogen.sh
|
|
uses "automake-1.7" and "aclocal-1.7.
|
|
AUTOMAKE_PREFIX is used as a prefix for all tools from the automake
|
|
page and may be combined with AUTOMAKE_SUFFIX. e.g.:
|
|
AUTOMAKE_PREFIX=/usr/foo/bin ./autogen.sh
|
|
uses "automake" and "aclocal" in the /usr/foo/bin
|
|
directory.
|
|
AUTOCONF_SUFFIX is used as a suffix for all tools from the automake
|
|
package
|
|
AUTOCONF_PREFIX is used as a prefix for all tools from the automake
|
|
package
|
|
GETTEXT_SUFFIX is used as a suffix for all tools from the gettext
|
|
package
|
|
GETTEXT_PREFIX is used as a prefix for all tools from the gettext
|
|
package
|
|
|
|
It is also possible to use the variable name AUTOMAKE, AUTOCONF,
|
|
ACLOCAL, AUTOHEADER, GETTEXT and MSGMERGE to directly specify the name
|
|
of the programs to run. It is however better to use the suffix and
|
|
prefix forms as described above because that does not require
|
|
knowledge about the actual tools used by autgen.sh.
|
|
|
|
|
|
Please don't use autopoint, libtoolize or autoreconf unless you are
|
|
the current maintainer and want to update the standard configuration
|
|
files. All those files should be in the CVS and only updated manually
|
|
if the maintainer decides that newer versions are required. The
|
|
maintainer should also make sure that the required version of automake
|
|
et al. are properly indicated at the top of configure.ac and take care
|
|
to copy the files and not merely use symlinks.
|
|
|
|
|
|
Copyright 2004 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.
|