~noskcaj/ubuntu/trusty/gpgme1.0/1.4.3

« back to all changes in this revision

Viewing changes to src/util.h

  • Committer: Jackson Doak
  • Date: 2013-10-23 07:02:39 UTC
  • mfrom: (13.1.1 sid)
  • Revision ID: noskcaj@ubuntu.com-20131023070239-bbtonk3q5jdsnamr
* Merge from debian unstable. Remaining changes:
  - debian/rules: Switch back to using /usr/bin/gpg and add back gnupg build
    dependency, as we don't install gnupg2 by default. This was missing in the
    previous upload, and unbreaks nautilus-dropbox, seahorse, bzr, and other
    libgpgme consumers.
  - debian/control: Depends on "gnupg | gnupg2" rather than gnupg2,
    default to the old version since the new one depends on gpg-agent, 
    pinentry-gtk2, and a bunch of other packages we don't need/want in the
    default installation
* NMU
* New upstream release.
* debian/control (Build-Depends): Dropped dirmngr (closes: #712813). It is
  not necessary for the build.
  (Vcs-Browser, Vcs-Svn): Fixed vcs-field-not-canonical.
* debian/libgpgme11.symbols: Updated symbols file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
 
49
49
/*-- {posix,w32}-util.c --*/
50
 
const char *_gpgme_get_gpg_path (void);
51
 
const char *_gpgme_get_gpgsm_path (void);
52
 
const char *_gpgme_get_gpgconf_path (void);
53
 
const char *_gpgme_get_g13_path (void);
54
 
const char *_gpgme_get_uiserver_socket_path (void);
55
 
 
56
50
int _gpgme_get_conf_int (const char *key, int *value);
57
51
void _gpgme_allow_set_foreground_window (pid_t pid);
58
52
 
59
53
/*-- dirinfo.c --*/
60
54
const char *_gpgme_get_default_homedir (void);
61
55
const char *_gpgme_get_default_agent_socket (void);
 
56
const char *_gpgme_get_default_gpg_name (void);
 
57
const char *_gpgme_get_default_gpgsm_name (void);
 
58
const char *_gpgme_get_default_g13_name (void);
 
59
const char *_gpgme_get_default_gpgconf_name (void);
 
60
const char *_gpgme_get_default_uisrv_socket (void);
62
61
 
63
62
 
64
63