mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
21d9bd8b87
* common/util.h (EXTERN_UNLESS_MAIN_MODULE): Add the definion only here but now without the Norcroft-C. Change all other places where it gets defined. * common/iobuf.h (iobuf_debug_mode): Declare unconditionally as extern. * common/iobuf.c (iobuf_debug_mode): Define it here. * agent/gpg-agent.c (INCLUDED_BY_MAIN_MODULE): Define here and also in all main modules of all other programs. * g10/main.h: Put util.h before the local header files. -- This change is required for use with gcc/ld's LTO feature which does not allow common blocks. Further gcc 10 will make -fno-common the default and thus this chnage is always needed. What a pitty. Co-authored-by: Tomáš Mráz GnuPG-bug-id: 4831 Signed-off-by: Werner Koch <wk@gnupg.org> |
||
---|---|---|
.. | ||
addgnupghome | ||
applygnupgdefaults | ||
call-dirmngr.c | ||
call-dirmngr.h | ||
ccidmon.c | ||
ChangeLog-2011 | ||
clean-sat.c | ||
convert-from-106 | ||
crlf.c | ||
der-to-pem | ||
gpg-check-pattern.c | ||
gpg-connect-agent-w32info.rc | ||
gpg-connect-agent.c | ||
gpg-wks-client.c | ||
gpg-wks-server.c | ||
gpg-wks.h | ||
gpg-zip.in | ||
gpgconf-comp.c | ||
gpgconf.c | ||
gpgconf.h | ||
gpgparsemail.c | ||
gpgsplit.c | ||
gpgtar-create.c | ||
gpgtar-extract.c | ||
gpgtar-list.c | ||
gpgtar.c | ||
gpgtar.h | ||
lspgpot | ||
mail-signed-keys | ||
make-dns-cert.c | ||
Makefile.am | ||
Manifest | ||
mime-maker.c | ||
mime-maker.h | ||
mime-parser.c | ||
mime-parser.h | ||
no-libgcrypt.c | ||
pgpgroup-to-gpggroup | ||
README.gpgconf | ||
rfc822parse.c | ||
rfc822parse.h | ||
send-mail.c | ||
send-mail.h | ||
sockprox.c | ||
symcryptrun.c | ||
watchgnupg.c | ||
wks-receive.c | ||
wks-util.c |
============ GPG Conf ============ Main documentation for this tool can be found in doc/tools.texi. BACKENDS ======== Backends should support the following commands: Command --gpgconf-list ---------------------- List the location of the configuration file, and all default values of all options. The location of the configuration file must be an absolute pathname. The format of each line is: NAME:FLAGS:DEFAULT:ARGDEF NAME This field contains a name tag for the group or option. The name tag is used to specify the group or option in all communication with GPGConf. The name tag is to be used verbatim. It is not in any escaped format. FLAGS The flags field contains an unsigned number. Its value is the OR-wise combination of the following flag values: 16 default If this flag is set, a default value is available. 32 default desc If this flag is set, a (runtime) default is available. This and the "default" flag are mutually exclusive. 64 no arg desc If this flag is set, and the "optional arg" flag is set, then the option has a special meaning if no argument is given. DEFAULT This field is defined only for options. Its format is that of an option argument (see section Format Conventions for details). If the default value is empty, then no default is known. Otherwise, the value specifies the default value for this option. Note that this field is also meaningful if the option itself does not take a real argument. ARGDEF This field is defined only for options for which the "optional arg" flag is set. If the "no arg desc" flag is not set, its format is that of an option argument (see section Format Conventions for details). If the default value is empty, then no default is known. Otherwise, the value specifies the default value for this option. If the "no arg desc" flag is set, the field is either empty or contains a description of the effect of this option if no argument is given. Note that this field is also meaningful if the option itself does not take a real argument. Example: $ dirmngr --gpgconf-list gpgconf-config-file:/mnt/marcus/.gnupg/dirmngr.conf ldapservers-file:/mnt/marcus/.gnupg/dirmngr_ldapservers.conf add-servers:0 max-replies:10 TODO ---- * Implement --dry-run and --quiet. * Extend the backend interface to include gettext domain and description, if available, to avoid repeating this information in gpgconf.