aboutsummaryrefslogtreecommitdiffstats
path: root/common/Makefile.am (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-05-08common: Remove generated files only during maintainer-clean.Werner Koch1-1/+1
* common/Makefile.am (CLEANFILES): Rename to MAINTAINERCLEANFILES. -- In general this is not required because automake does this for files in BUILT_SOURCES anyway. However, having them in CLEANFILES is wrong. This is bug#1398.
2012-02-06common: Add function print_assuan_status.Werner Koch1-1/+1
* common/asshelp2.c: New. (print_assuan_status): New function. * common/Makefile.am (common_sources): Add asshelp2.c.
2012-01-25Port to npth.Marcus Brinkmann1-5/+5
* configure.ac: Don't check for PTH but for NPTH. (AH_BOTTOM): Remove PTH_SYSCALL_SOFT. (have_pth): Rename to ... (have_npth): ... this. (USE_GNU_NPTH): Rename to ... (USE_GNU_PTH): ... this. * m4/npth.m4: New file. * agent/Makefile.am, agent/cache.c, agent/call-pinentry.c, agent/call-scd.c, agent/findkey.c, agent/gpg-agent.c, agent/trustlist.c, common/Makefile.am, common/estream.c, common/exechelp-posix.c, common/exechelp-w32.c, common/exechelp-w32ce.c, common/http.c, common/init.c, common/sysutils.c, dirmngr/Makefile.am, dirmngr/crlfetch.c, dirmngr/dirmngr.c, dirmngr/dirmngr_ldap.c, dirmngr/ldap-wrapper-ce.c, dirmngr/ldap-wrapper.c, dirmngr/ldap.c, g13/Makefile.am, g13/call-gpg.c, g13/g13.c, g13/runner.c, scd/Makefile.am, scd/apdu.c, scd/app.c, scd/ccid-driver.c, scd/command.c, scd/scdaemon.c, tools/Makefile.am: Port to npth.
2011-12-01Generate the ChangeLog from commit logs.Werner Koch1-1/+1
* scripts/gitlog-to-changelog: New script. Taken from gnulib. * scripts/git-log-fix: New file. * scripts/git-log-footer: New file. * doc/HACKING: Describe the ChangeLog policy * ChangeLog: New file. * Makefile.am (EXTRA_DIST): Add new files. (gen-ChangeLog): New. (dist-hook): Run gen-ChangeLog. Rename all ChangeLog files to ChangeLog-2011.
2011-11-30Use separate test module for dns-cert.c.Werner Koch1-1/+2
* dns-cert.c (get_dns_cert): Factor test code out to ... * t-dns-cert.c: new file.
2011-07-20New functions to compute an ssh style fingerprint.Werner Koch1-1/+3
2011-02-04Nuked almost all trailing white space.post-nuke-of-trailing-wsWerner Koch1-10/+6
We better do this once and for all instead of cluttering all future commits with diffs of trailing white spaces. In the majority of cases blank or single lines are affected and thus this change won't disturb a git blame too much. For future commits the pre-commit scripts checks that this won't happen again.
2011-01-31Move OpenPGP OID helpers to common/.Werner Koch1-1/+3
This is needed so that the agent will be able to export and import OpenPGP secret keys. Add test case. Removed unused function.
2010-08-13Minor Makefile fixes to let it build on all platformsWerner Koch1-4/+4
2010-06-082010-06-08 Marcus Brinkmann <[email protected]>Marcus Brinkmann1-2/+2
* Makefile.am (AM_CFLAGS): Add $(LIBASSUAN_CFLAGS). (t_common_ldadd): Add $(LIBASSUAN_LIBS). * sysutils.c: Include <assuan.h>. (translate_sys2libc_fd_int): Cast to silence gcc warning. * iobuf.c: Include <assuan.h> (translate_file_handle): Fix syntax error.
2010-04-20Add missing file.Werner Koch1-1/+1
Typo fix.
2010-04-14./autogen.sh --build-w32ce does now succeed.Werner Koch1-1/+6
2010-03-22Reorganized the exechelp code.Werner Koch1-1/+13
2010-03-22More chnages to use estream. Add a way to replace the standardWerner Koch1-1/+4
descriptors.
2010-03-10Merged jnlib into common.Werner Koch1-8/+46
2009-12-082009-12-08 Marcus Brinkmann <[email protected]>Marcus Brinkmann1-1/+5
* Makefile.am (audit-events.h, status.h) [!MAINTAINER_MODE]: No longer include these rules if not in maintainer mode.
2009-12-08Unification of the search descriptor usage.Werner Koch1-0/+1
2009-12-04Fix possible problem with chnages status.h and VBUILDS.Werner Koch1-2/+6
2009-10-162009-10-16 Marcus Brinkmann <[email protected]>Marcus Brinkmann1-1/+1
* configure.ac: Check for libassuan instead of libassuan-pth. common/ 2009-10-16 Marcus Brinkmann <[email protected]> * Makefile.am (libcommon_a_CFLAGS): Use LIBASSUAN_CFLAGS instead of LIBASSUAN_PTH_CFLAGS. scd/ 2009-10-16 Marcus Brinkmann <[email protected]> * AM_CFLAGS, scdaemon_LDADD: Use libassuan instead of libassuan-pth. * scdaemon.c: Invoke ASSUAN_SYSTEM_PTH_IMPL. (main): Call assuan_set_system_hooks and assuan_sock_init. g13/ 2009-10-16 Marcus Brinkmann <[email protected]> * AM_CFLAGS, g13_LDADD: Use libassuan instead of libassuan-pth. * g13.c: Invoke ASSUAN_SYSTEM_PTH_IMPL. (main): Call assuan_set_system_hooks. agent/ 2009-10-16 Marcus Brinkmann <[email protected]> * gpg_agent_CFLAGS, gpg_agent_LDADD: Use libassuan instead of libassuan-pth. * gpg-agent.c: Invoke ASSUAN_SYSTEM_PTH_IMPL. (main): Call assuan_set_system_hooks and assuan_sock_init. Fix invocation of assuan_socket_connect.
2009-07-07Reworked passing of envars to Pinentry.Werner Koch1-3/+4
2009-04-01Import/export of pkcs#12 now uses the gpg-agent directly.Werner Koch1-1/+4
Removed duplicated code (percent unescaping).
2009-03-19Make sure not to leak file descriptors if running gpg-agent with aWerner Koch1-1/+2
command. Restore the signal mask to solve a problem in Mono.
2008-12-05Add a custom prompt for the CSR generation.Werner Koch1-1/+3
Add a new percent escape fucntion.
2008-06-09Add Base64 decoder. Not yet used but complements out encoder.Werner Koch1-1/+1
2008-04-07Minor cleanups.Werner Koch1-1/+4
Implemented key helper kdns
2007-12-13Allow verification of some broken S-TRUST generated signatures.Werner Koch1-2/+2
2007-12-04Allow configuraton of pinentry tooltip.Werner Koch1-4/+7
Other minor buf fixes.
2007-11-27Fixed make distcheckWerner Koch1-0/+2
2007-11-19Started to implement the audit log feature.Werner Koch1-2/+24
Pass PINENTRY_USER_DATA and XAUTHORITY to Pinentry. Improved support for the quality bar. Minor internal restructuring. Translation fixes.
2007-08-22Updated estream.Werner Koch1-2/+2
More changes for Windows.
2007-08-16About to do a releasegnupg-2.0.6Werner Koch1-5/+1
2007-08-10Implemented the chain model for X.509 validation.Werner Koch1-0/+1
2007-08-02Factored common gpgconf constants outWerner Koch1-0/+1
Fixed W32 compare_filenames
2007-07-05Fixed card key generation of gpg2.Werner Koch1-2/+4
Reveal less information about timings while generating a key.
2007-07-04Changed to GPLv3.Werner Koch1-4/+2
Removed intl/.
2007-06-26More W32 related changesWerner Koch1-1/+4
2007-06-14A whole bunch of changes to allow building for Windows.Werner Koch1-1/+3
See the ChangeLogs for details.
2007-06-06First steps towards supporting W32.Werner Koch1-5/+10
This is mainly source code reorganization. Update gnulib. g10/ does currently not build.
2007-05-15Use estream_asprintf instead of the GNU asprintf.Werner Koch1-1/+1
2007-01-31Included LIBICONV in all Makefiles.Werner Koch1-1/+1
g10/ * passphrase.c (passphrase_get): Set the cancel flag on all error from the agent. Fixes a bug reported by Tom Duerbusch. sm/ * gpgsm.c (main): Let --gen-key print a more informative error message.
2006-12-13Some build fixes for platforms like OSX where we use the built-in libintl.David Shaw1-1/+1
2006-11-05Collected fixes.Werner Koch1-1/+1
2006-10-242006-10-24 Marcus Brinkmann <[email protected]>Marcus Brinkmann1-1/+2
* Makefile.am (libcommon_a_CFLAGS): Add $(LIBASSUAN_CFLAGS). (libsimple_pwquery_a_CFLAGS): New variable.
2006-10-17Pth tweaks and improved estream.cWerner Koch1-4/+9
2006-10-10Various changesWerner Koch1-1/+1
2006-09-21Various updatesWerner Koch1-1/+4
2006-09-15Allow for a global trustlist.Werner Koch1-0/+15
2006-09-06The big Assuan error code removal.Werner Koch1-1/+0
2006-08-21Migrated more stuff to doc/Werner Koch1-1/+2
Migrated the gpg regression tests. Some changes tp the gpg code to fix bugs and for the use in testing. make distcheck works now with gpg enabled.
2006-08-16With --enable-gpg the keyservers are now build and a first test using gpg2Werner Koch1-0/+1
shows no prblems. Needs more testing of course.