aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * configure.ac: Check for ln -s and add GPGKEYS_LDAP conditional, both forDavid Shaw2004-02-191-0/+2
| | | | | making gpgkeys_ldaps symlink to gpgkeys_ldap.
* * configure.ac: Simplify the LDAP checking code since OpenLDAP is far moreDavid Shaw2004-02-191-49/+12
| | | | | | mature these days and dependencies are cleaner. Add checks for ldap_set_option and ldap_start_tls_s.
* * NEWS: Note --enable-key-cache, the OpenBSD/i386 and HPPA fixes, andDavid Shaw2004-01-281-2/+27
| | | | | | | | Elgamal removal. * README, configure.ac: Add --enable-key-cache=SIZE configure option. This sets the key/uid cache size. Default is 4096.
* * configure.ac: Use -Wformat-nonliteral in maintainer-mode.Werner Koch2004-01-131-0/+1
|
* * configure.ac: Include stdio.h when checking for bzlib.h. Solaris 9 has aDavid Shaw2004-01-121-1/+5
| | | | | | | | very old bzip2 library and we can at least guarantee that it won't fail because of the lack of stdio.h. * THANKS: Added Phong Nguyen, who found the Elgamal signing key problem.
* * NEWS: Note --disable-rsa.David Shaw2003-12-011-0/+11
| | | | | | | | * configure.ac: Add --disable-rsa. * README: Add --with-zlib, --with-bzip2, --without-bzip2, --disable-rsa, and --enable-minimal. Update gettext version.
* post release version number bumbWerner Koch2003-11-271-1/+1
|
* about to release 1.3.4Werner Koch2003-11-271-1/+1
|
* * configure.ac: Use MSG_NOTICE instead of MSG_WARN for less seriousDavid Shaw2003-11-271-4/+4
| | | | | | | notifications. * NEWS: I meant "less" not "more".
* * configure.ac: Make sure that the resolver API actually compiles, and notDavid Shaw2003-11-131-1/+14
| | | | | just that the right functions exist.
* * configure.ac: Locate libbz2 for bzip2 compression support.David Shaw2003-10-311-0/+37
|
* * NEWS: Note --symmetric --encrypt and the improved config file search.David Shaw2003-10-261-2/+6
| | | | | * configure.ac: Add SAFE_VERSION_DOT and SAFE_VERSION_DASH.
* * Makefile.am (SUBDIRS): Add intl.Werner Koch2003-10-251-3/+2
| | | | | | | | (ACLOCAL_AMFLAGS): New variable. (EXTRA_DIST): Add scripts/config.rpath. * configure.ac (AC_CONFIG_FILES): Add po/Makefile.in, (AL_LINGUAS): Removed.
* * configure.ac (DLLIBS): Work properly on platforms where dlopen andDavid Shaw2003-10-251-13/+17
| | | | | friends are in libc instead of libdl.
* (DLLIBS): Fixed last change.Werner Koch2003-10-241-28/+26
|
* (DLLIBS): Do not include -ldl in the mingw32 case.Werner Koch2003-10-231-1/+7
|
* * passphrase.c (ask_passphrase): Add optional promptid arg.Werner Koch2003-10-211-4/+0
| | | | | | | | | | | | | | | | | | | Changed all callers. * cardglue.c (pin_cb): Use it here, so the machine interface can tell whether the Admin PIN is requested. * cardglue.c (agent_scd_checkpin): New. * misc.c (openpgp_pk_algo_usage): Added AUTH usage. * app-openpgp.c (check_against_given_fingerprint): New. Factored out that code elsewhere. (do_check_pin): New. * card-util.c (card_edit): New command "passwd". Add logic to check the PIN in advance. (card_status): Add new args to return the serial number. Changed all callers.
* * configure.ac: Include -ldl when card support is used.David Shaw2003-10-161-13/+24
|
* Prepared for next development cycleWerner Koch2003-10-101-1/+1
|
* About to release 1.3.3Werner Koch2003-10-101-1/+1
|
* * cardglue.c (learn_status_cb): Release values before assignmentWerner Koch2003-10-021-0/+5
| | | | | | | | | 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.
* First bits of a card support backport from 1.9. It is not enabled byWerner Koch2003-09-271-0/+27
| | | | | | | | | | | | | | | default and tehre is not yet much more than a new configure option. * configure.ac (LIBUSB_LIBS,HAVE_LIBUSB): Check for Libusb. (--enable-card-support): New. * sign.c (do_sign) [ENABLE_CARD_SUPPORT]: Divert to card. * cardglue.c, cardglue.h: New. * Makefile.am (gpg_LDADD): Added. (card_support_sources): New. * memory.h (xmalloc): Define xmalloc macros in terms of m_alloc.
* * configure.ac: Drop TIGER/192 support. Check for UINT64_C to go alongDavid Shaw2003-09-041-44/+11
| | | | | with uint64_t.
* * configure.ac: Check for getaddrinfo. Don't bother to check for EGD libsDavid Shaw2003-08-251-3/+1
| | | | | since we need to have the netlibs regardless because of the agent socket.
* * configure.ac: configure.ac: Check for sigset_t and struct sigaction.David Shaw2003-07-101-1/+5
| | | | | | This is for Forte c89 on Solaris which seems to define only the function call half of the two pairs by default.
* * THANKS: Updates from stable.David Shaw2003-07-101-1/+3
| | | | | | | | | * configure.ac: Include wsock32 in W32LIBS. This is different from NETLIBS so we don't need to force other platforms to pull in the netlibs when they aren't actually needed. * NEWS: Note portability changes.
* * configure.ac: Define SAFE_VERSION so that RISCOS can override it andDavid Shaw2003-06-031-0/+3
| | | | | remove invalid chars.
* * configure.ac: Put wsock32 in NETLIBS. Put zlib in ZLIBS. Put dl inDavid Shaw2003-05-311-24/+18
| | | | | | | DLLIBS. Check for getopt.h if available. Look for getopt() in libiberty if libc doesn't have it. Enable GPGKEYS_HKP after AC_PROG_CC so that any needed extension (i.e. ".exe") is defined.
* Bumbed version number after releaseWerner Koch2003-05-271-1/+1
|
* About to release 1.3.2V1-3-2Werner Koch2003-05-271-1/+1
|
* * configure.ac: Edit preprocessor instructions in g10defs.h to removeDavid Shaw2003-05-241-13/+13
| | | | | | whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it.
* * configure.ac: Remove some stuff no longer needed with newer autoconf.David Shaw2003-05-111-24/+30
| | | | | | | | | | | | | | | Use AC_GNU_SOURCE instead of defining _GNU_SOURCE manually. Add check for strchr() for gettext. Add "ngettext" check for gettext, since that check supposedly implies a check for bind_textdomain_codeset. Add check for times() for random.c. Fix URL for EGD. Make --enable-old-tiger match the stable branch as a separate item. * NEWS: "OpenPGP" trust model is now "PGP". Add note about TIGER being dropped from OpenPGP. Note trust bug fix. * README: Fix all URLs to point to the right place in the reorganized gnupg.org web pages. Some minor language fixes.
* * configure.ac: Big warning that TIGER/192 is being removed from theDavid Shaw2003-04-231-4/+17
| | | | | | | standard, and make it disabled by default. * README: Put back proper copyright line. Remove mention of TIGER/192.
* * configure.ac (HAVE_DOSISH_SYSTEM): New automake conditional.Werner Koch2003-04-151-6/+12
|
* * configure.ac: Use much more accurate method to determine whetherDavid Shaw2003-04-071-29/+14
| | | | | | | | | | | | | DNS SRV is usable. * README: Document the various --disable-xxx switches, and add a note about existing keys that may use one of the missing ciphers as a preference. Update copyright date. * NEWS: Add note about SHA-256/384/512. * acinclude.m4: Fix URL to faqprog.pl.
* * acinclude.m4 (GNUPG_CHECK_ENDIAN): When crosscompiling assumeWerner Koch2003-03-241-1/+4
| | | | | | | | little only for Intel CPUs. * configure.ac: Check for ranlib and ar. This is required for cross compiling.
* * configure.ac: Look for res_query so we can use DNS SRV, and addDavid Shaw2003-03-111-0/+43
| | | | | --disable-dns-srv to disable it.
* * configure.ac: Define @CAPLIBS@ to link in -lcap if we are usingDavid Shaw2003-03-041-1/+1
| | | | | capabilities.
* * configure.ac: Add --disable-idea for IDEA. Note that disabling IDEADavid Shaw2003-02-221-29/+33
| | | | | | | disables both the real IDEA and the possibility of using the IDEA loadable module. Remove the --disable-dynload option since it is no longer meaningful (it is only used if idea-stub is used).
* * configure.ac: Add --disable-xxx options for CAST5, BLOWFISH, AES (all),David Shaw2003-02-211-13/+100
| | | | | | TWOFISH, TIGER192, SHA256, and SHA384/512. Add a --enable-minimal that disables all of them as well as --disable-exec.
* * configure.ac: Do not set GNUPG_LIBEXECDIR in ./configure, so thatDavid Shaw2003-02-121-18/+26
| | | | | | makefiles can override it. Verify that we have a 64-bit type before building tiger.c or sha512.c. Add uint64_t as a possible 64-bit type.
* * THANKS: Changes from stable branch.David Shaw2002-11-131-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | * configure.ac: Check for ctermid(). From Werner on stable branch. * configure.ac (GPGKEYS_LDAP,GPGKEYS_HKP): Add $EXEEXT. From Werner on stable branch. * configure.ac (try_gettext): Remove special case for cygwin. This removes all the DOS specific macros and let Cygwin work like a real OS. Needs a couple of changes elsewhere but after all, GnuPG presents itself much more like a Posix program and can be used in a full Cygwin environment; e.g. used along with mutt. Changes suggested by Volker Quetschke. From Werner on stable branch. * acinclude.m4 (GNUPG_SYS_NM_PARSE): Allow for underscore in test symbols. Useful for Cygwin builds. (GNUPG_SYS_SYMBOL_UNDERSCORE): Don't hardwire to yes for Cygwin. From Werner on stable branch. * README: Add an installation note for Darwin 6.1. From Werner on stable branch.
* Post release version number bump.Werner Koch2002-11-121-1/+1
|
* Preparing 1.3.1 release.V1-3-1Werner Koch2002-11-121-1/+1
|
* * configure.ac: Add a check for volatile.David Shaw2002-10-311-1/+1
|
* * configure.ac: Add --disable-regex in case some platform just can'tDavid Shaw2002-10-291-20/+32
| | | | | | handle the regex stuff. This means they can't fully handle trust sigs with an attached regex either.
* * configure.ac: Regex tests adapted from mutt to decide whether to use theDavid Shaw2002-10-191-3/+35
| | | | | internal regex code or not.
* Bumped version number for cvs versionWerner Koch2002-10-181-1/+1
|
* * configure.ac: Changed version number comments.Werner Koch2002-10-181-3/+4
| | | | | | | (ALL_LINGUAS): Removed all except for de. During development it might not be a good idea to keep all of them - they get outdated too soon and diff files will be far too large.
* * configure.ac (NAME_OF_DEV_URANDOM): Use /dev/urandom forWerner Koch2002-10-121-1/+1
| | | | | NetBSD. Reported by Christian Biere.