aboutsummaryrefslogtreecommitdiffstats
path: root/g10/Makefile.am (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-05-07w32: Add icons and version information.Ian Abbott1-3/+6
* common/gnupg.ico: New. Take from artwork/gnupg-favicon-1.ico. * agent/gpg-agent-w32info.rc: New. * g10/gpg-w32info.rc: New. * scd/scdaemon-w32info.rc: New. * sm/gpgsm-w32info.rc: New. * tools/gpg-connect-agent-w32info.rc: New. * common/w32info-rc.h.in: New. * configure.ac (BUILD_REVISION, BUILD_FILEVERSION, BUILD_TIMESTAMP) (BUILD_HOSTNAME): New. (AC_CONFIG_FILES): Add w32info-rc.h. * am/cmacros.am (.rc.o): New rule. * agent/Makefile.am, common/Makefile.am, g10/Makefile.am * scd/Makefile.am, sm/Makefile.am, tools/Makefile.am: Add stuff to build resource files. Signed-off-by: Werner Koch <[email protected]>
2011-12-02Generate the ChangeLog from commit logs.Werner Koch1-9/+9
* scripts/gitlog-to-changelog: New script. Taken from gnulib. * scripts/git-log-fix: New file. * scripts/git-log-footer: New file. * scripts/git-hooks/commit-msg: New script. * autogen.sh: Install commit-msg hook for git. * 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.
2009-09-03Fix bug#1122.Werner Koch1-0/+2
Note that msgmerge 0.17 is completely broken as it always prepends a fuzzy null entry to all po files.
2008-12-12Add missing header file.Werner Koch1-1/+1
2008-12-11Make gpg not depend on the RIPE-MD160 implementaion in Libgcrypt.Werner Koch1-0/+9
Fix SIG_ID computation.
2007-11-19Started to implement the audit log feature.Werner Koch1-2/+1
Pass PINENTRY_USER_DATA and XAUTHORITY to Pinentry. Improved support for the quality bar. Minor internal restructuring. Translation fixes.
2007-07-04Changed to GPLv3.Werner Koch1-4/+2
Removed intl/.
2007-06-14A whole bunch of changes to allow building for Windows.Werner Koch1-1/+1
See the ChangeLogs for details.
2007-06-08Syntax fix - should build now - however not tested.Werner Koch1-1/+1
2007-06-06First steps towards supporting W32.Werner Koch1-2/+2
This is mainly source code reorganization. Update gnulib. g10/ does currently not build.
2006-12-21Started to code a --server mode. Werner Koch1-0/+1
It is far from being ready!
2006-12-07Makefile.am: Link to iconv for jnlib dependency. (OSX)David Shaw1-2/+4
2006-11-21Changed order of libsWerner Koch1-1/+1
2006-10-242006-10-24 Marcus Brinkmann <[email protected]>Marcus Brinkmann1-1/+1
* Makefile.am (AM_CFLAGS): Add $(LIBASSUAN_CFLAGS).
2006-10-23.Werner Koch1-1/+8
2006-10-17Pth tweaks and improved estream.cWerner Koch1-2/+2
2006-10-10Various changesWerner Koch1-1/+1
2006-09-21Various updatesWerner Koch1-2/+3
2006-09-062006-09-06 Marcus Brinkmann <[email protected]>Marcus Brinkmann1-3/+3
* Makefile.am (gpg2_LDADD, gpgv2_LDADD): Replace -lassuan and -lgpg-error with $(LIBASSUAN_LIBS) and $(GPG_ERROR_LIBS). (AM_CFLAGS): Add $(LIBASSUAN_CFLAGS) and $(GPG_ERROR_CFLAGS).
2006-08-16With --enable-gpg the keyservers are now build and a first test using gpg2Werner Koch1-1/+2
shows no prblems. Needs more testing of course.
2006-07-27Preparing a new releasegnupg-1.9.22Werner Koch1-1/+1
2006-07-08* configure.ac: Fix resolver autoconf code so it works (fails)David Shaw1-1/+1
properly with uClibc.
2006-06-20Updated FSF's address.Werner Koch1-1/+2
2006-05-23g10/ does build again.Werner Koch1-1/+1
2006-04-19Merged with gpg 1.4.3 code. Werner Koch1-6/+5
The gpg part does not yet build.
2005-11-06* Makefile.am: Include @LIBUSB_CPPFLAGS@ in our CPPFLAGS. StrictlyDavid Shaw1-2/+4
speaking this should be only in gpg_CPPFLAGS, but then we have to compile everything twice for gpg and gpgv. * apdu.c (open_pcsc_reader): Fix double free. * gpg.c (main) [__APPLE__]: Default the PCSC driver to the OS X location. Suggested by Patty A. Hardy.
2005-10-05Fixes for the g10.c -> gpg.c renamedWerner Koch1-5/+5
2005-08-21* Makefile.am: No need to link with curl any longer.David Shaw1-2/+1
* main.h, misc.c (path_access): New. Same as access() but does a PATH search like execlp. * keyserver.c (curl_can_handle): Removed. Replaced by... (curl_cant_handle): We are now relying on curl as the handler of last resort. This is necessary because PGP LDAP and curl LDAP are apples and oranges. (keyserver_typemap): Only test for ldap and ldaps. (keyserver_spawn): If a given handler is unusable (as determined by path_access()) then try gpgkeys_curl.
2005-07-28Implemented PKA trust modelWerner Koch1-1/+1
2005-07-20* keyserver.c (curl_can_handle): New. Do a runtime check against libcurlDavid Shaw1-1/+2
to see if it can handle a particular protocol. (keyserver_typemap): Call it here. * Makefile.am: Pull in libcurl for curl_version_info() if used.
2005-06-01* configure.ac (gl_INIT): Add gnulib stuff.Werner Koch1-3/+3
(fseeko, ftello, ttyname, isascii): Replaced the AC_REPLACE_FUNCS by a simple check. (putc_unlocked): Removed check. Not used. (strsep, mkdtemp, asprintf): Replaced checks by gnulib checks. (xsize): Added will probably come handy soon. (CFLAGS): Use -Wformat-security instead of -Wformat-nonliteral. Add --Wno-format-y2k. * gl/, gl/m4/: New. * gpg-agent.c: Include setenv.h. * Makefile.am (AM_CPPFLAGS): Added. * util.h: Add some includes for gnulib. (ttyname, isascii): Define them inline. * fseeko.c, ftello.c: Removed. * strsep.c, mkdtemp.c: Removed. * ttyname.c, isascii.c: Removed. * mkdtemp.c: Removed. * exec.c: Include mkdtemp.h * keybox-file.c (ftello) [!HAVE_FSEEKO]: New replacement function. Copied from ../common/ftello.c. * keybox-update.c (fseeko) [!HAVE_FSEEKO]: New replacement function. Copied from ../common/iobuf.c. * scdaemon.c: Include mkdtemp.h. * misc.c: Include setenv.h. * symcryptrun.c: Include mkdtemp.h.
2005-05-31Updated FSF street address and preparations for a release candidate.Werner Koch1-1/+1
2005-05-05* Makefile.am, packet.h, main.h, comment.c: Remove comment.c. We don'tDavid Shaw1-1/+0
use any of these functions any longer.
2005-03-17* Makefile.am: Calculate GNUPG_LIBEXECDIR directly. Do not redefineDavid Shaw1-12/+4
$libexecdir.
2005-01-03* Makefile.am: Use @LIBUSB@ instead of @LIBUSB_LIBS@David Shaw1-3/+3
* import.c (delete_inv_parts): Comments on import-unusable-sigs.
2004-12-18Readline fix to be robust against platforms where readline has its ownDavid Shaw1-1/+1
dependencies. We play guess-the-depedency for a while, and try termcap, curses, and ncurses.
2004-12-18Avoid the " map_to_assuan_status called with no error source" diagnostic.Werner Koch1-1/+1
2004-10-28Inlcude LIBICONVWerner Koch1-1/+2
2004-09-30Preparing a new release. Updated gettextWerner Koch1-1/+1
2004-08-31* openfile.c (copy_options_file): Use gpg-conf.skelWerner Koch1-1/+1
* Makefile.am: Install options.skel as gpg-conf.skel.
2004-04-27A bunch of changes for the openpgp card.Werner Koch1-1/+1
2004-02-20* mkdtemp.c: Removed.David Shaw1-2/+1
* Makefile.am: We get mkdtemp.c from libutil.a now, so don't link with @LIBOBJS@. * keyserver.c (keyserver_spawn): Pass the scheme to the keyserver helper.
2004-02-12* gpgv.c: Removed g10defs.h.Werner Koch1-9/+8
* Makefile.am: Include cmacros.am for common flags.
2003-11-102003-11-10 Moritz Schulte <[email protected]>Moritz Schulte1-1/+1
* Makefile.am (INCLUDES): Added: @LIBGCRYPT_CFLAGS@.
2003-10-31* misc.c (compress_algo_to_string, string_to_compress_algo,David Shaw1-2/+8
check_compress_algo): Add bzip2. * compress.c (compress_filter): Make static to help force the use of push_compress_filter. Remove default algorithm setting since that is done in push_compress_filter now. * main.h: Use named algorithm. * filter.h, compress.c (push_compress_filter, push_compress_filter2): New. Figure out which is the appropriate compression filter to use, and push it into place. * compress.c (handle_compressed), encode.c (encode_simple, encode_crypt), sign.c (sign_file, sign_symencrypt_file), import.c (read_block), export.c (do_export): Use push_compress_filter instead of pushing the compression filter ourselves. * compress-bz2.c: New. Bzlib versions of the compression filter routines. * Makefile.am: Include compress-bz2.c if bz2lib is available.
2003-10-25* ccid-driver.c (ccid_open_reader): Return an error if no USBWerner Koch1-1/+1
devices are found. * Makefile.am: Replaced INTLLIBS by LIBINTL.
2003-10-10About to release 1.3.3Werner Koch1-1/+1
2003-10-08* cardglue.c (pin_cb): Detect whether an admin or regular PIN isWerner Koch1-8/+12
requested. (genkey_status_cb): New. (agent_scd_genkey): Implemented. * keygen.c (generate_keypair): New arg CARD_SERIALNO and prepare parameters for on card key generation. Changed all callers. (do_generate_keypair): Add new arg card and merged casrd specific changes from 1.9. (proc_parameter_file): New arg card, apss it down to do_generate_keypair and changed all callers. (gen_card_key): New. * g10.c: Include cardclue.h. (main): s/app_set_default_reader_port/card_set_reader_port/. * cardglue.c (card_set_reader_port): New to address include file issues.
2003-10-02* cardglue.c (learn_status_cb): Release values before assignmentWerner Koch1-3/+22
so that it can be used by getattr to update the structure. (agent_scd_getattr): New. * keylist.c (print_pubkey_info): Add FP arg for optional printing to a stream. Changed all callers.
2003-09-28* g10.c (main): New commands --card-edit, --card-status andWerner Koch1-1/+7
--change-pin. New options --ctapi-driver, --pcsc-driver and --disable-ccid * options.h (DBG_CARD_IO): New. * cardglue.c, cardclue.h: Enhanced. * card-util.c: New. Taken from current the gnupg 1.9 branch. * app-common.h, app-openpgp.c, iso7816.c, iso7816.h, apdu.c * apdu.h, ccid-driver.c, ccid-driver.h: New. Takem from the current gnupg 1.9 branch withy minor changes to include directives. * Makefile.am: Added these files.