aboutsummaryrefslogtreecommitdiffstats
path: root/m4 (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-13build: Update m4/iconv.m4.NIIBE Yutaka1-57/+165
* m4/iconv.m4: Update from gettext 0.20.1. -- Cherry-picked from master commit: 1cd2aca03b8807c6f8e4929ace462bb606dcd53f This includes fixes of file descriptor leaks. GnuPG-bug-id: 4504 Signed-off-by: NIIBE Yutaka <[email protected]>
2017-04-28Spelling fixes in docs and comments.NIIBE Yutaka2-4/+4
-- In addition, fix trailing spaces in tests/inittests. GnuPG-bug-id: 3121 Reported-by: ka7 (klemens) Signed-off-by: NIIBE Yutaka <[email protected]>
2017-02-21Clean up word replication.Yuri Chornoivan8-15/+15
-- This fixes extra word repetitions (like "the the" or "is is") in the code and docs. Signed-off-by: Daniel Kahn Gillmor <[email protected]>
2016-09-17Fix more spellingDaniel Kahn Gillmor1-1/+1
* NEWS, acinclude.m4, agent/command-ssh.c, agent/command.c, agent/gpg-agent.c, agent/keyformat.txt, agent/protect-tool.c, common/asshelp.c, common/b64enc.c, common/recsel.c, doc/DETAILS, doc/HACKING, doc/Notes, doc/TRANSLATE, doc/dirmngr.texi, doc/faq.org, doc/gpg-agent.texi, doc/gpg.texi, doc/gpgsm.texi, doc/instguide.texi, g10/armor.c, g10/gpg.c, g10/keyedit.c, g10/mainproc.c, g10/pkclist.c, g10/tofu.c, g13/sh-cmd.c, g13/sh-dmcrypt.c, kbx/keybox-init.c, m4/pkg.m4, sm/call-dirmngr.c, sm/gpgsm.c, tests/Makefile.am, tests/gpgscm/Manual.txt, tests/gpgscm/scheme.c, tests/openpgp/gpgv-forged-keyring.scm, tests/openpgp/multisig.test, tests/openpgp/verify.scm, tests/pkits/README, tools/applygnupgdefaults, tools/gpg-connect-agent.c, tools/mime-maker.c, tools/mime-parser.c: minor spelling cleanup. Signed-off-by: Daniel Kahn Gillmor <[email protected]>
2016-08-03More cleanup of "allow to".Daniel Kahn Gillmor3-10/+10
* README, agent/command.c, agent/keyformat.txt, common/i18n.c, common/iobuf.c, common/keyserver.h, dirmngr/cdblib.c, dirmngr/ldap-wrapper.c, doc/DETAILS, doc/TRANSLATE, doc/announce-2.1.txt, doc/gpg.texi, doc/gpgsm.texi, doc/scdaemon.texi, doc/tools.texi, doc/whats-new-in-2.1.txt, g10/export.c, g10/getkey.c, g10/import.c, g10/keyedit.c, m4/ksba.m4, m4/libgcrypt.m4, m4/ntbtls.m4, po/ca.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po, po/fr.po, po/gl.po, po/hu.po, po/id.po, po/it.po, po/ja.po, po/nb.po, po/pl.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po, po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po, scd/app-p15.c, scd/ccid-driver.c, scd/command.c, sm/gpgsm.c, sm/sign.c, tools/gpgconf-comp.c, tools/gpgtar.h: replace "Allow to" with clearer text. In standard English, the normal construction is "${XXX} allows ${YYY} to" -- that is, the subject (${XXX}) of the sentence is allowing the object (${YYY}) to do something. When the object is missing, the phrasing sounds awkward, even if the object is implied by context. There's almost always a better construction that isn't as awkward. These changes should make the language a bit clearer. Signed-off-by: Daniel Kahn Gillmor <[email protected]>
2016-06-25build: Add aclocal macro from pkg-config.Werner Koch2-1/+215
* m4/pkg.m4: New. Signed-off-by: Werner Koch <[email protected]>
2015-04-12build: Update gpg-error.m4.Werner Koch1-5/+7
--
2014-12-11build: Replace deprecated autconf macro.Werner Koch2-2/+2
* m4/intl.m4: s/AM_PROG_MKDIR_P/AC_PROG_MKDIR_P/ * m4/po.m4: Ditto. -- In preparation of moving to automake 1.14. GnuPG-bug-id: 1776
2014-10-02First changes for future use of NTBTLS.Werner Koch2-1/+138
* configure.ac (NEED_NTBTLS_ABI, NEED_NTBTLS_VERSION): New. (HTTP_USE_NTBTLS): New. Prefer over GNUTLS. * m4/ntbtls.m4: New. * m4/Makefile.am (EXTRA_DIST): Add new file. * common/http.c: Add conditionals to eventually use NTBTLS. -- This is only the configure stuff. If you have NTBTLS installed GNUTLS will not be used but there won't be any https support either :-(. This patch is used to have a real world test bench for the forthcoming library.
2014-10-02build: Update m4 scriptsWerner Koch2-22/+74
* m4/gpg-error.m4: Update from Libgpg-error git master. * m4/libgcrypt.m4: Update from Libgcrypt git master. * configure.ac: Declare SYSROOT a precious variable. Add extra error message for library configuration mismatches.
2014-08-26Switch to the libgpg-error provided estream.Werner Koch2-51/+0
* configure.ac (NEED_GPG_ERROR_VERSION): Reguire 1.14. (GPGRT_ENABLE_ES_MACROS): Define. (estream_INIT): Remove. * m4/estream.m4: Remove. * common/estream-printf.c, common/estream-printf.h: Remove. * common/estream.c, common/estream.h: Remove. * common/init.c (_init_common_subsystems): Call gpgrt initialization.
2014-03-11List readline support in configure summaryWerner Koch1-0/+3
* m4/readline.m4: Set gnupg_cv_have_readline. * configure.ac: Add readline support to summary output. -- Readline is an optional feature which is build if the readline development files are available on the build systems. Too often they are missing on a (new) build machine which at least makes debugging inconvenient. Backport useful code from fixes for bug 1447. * configure.ac: Cehck for inet_ntop. * m4/libcurl.m4: Provide a #define for the version of the curl library. -- We do not have keyserver helpers anymore but this fixes may come handy eventually.
2014-03-10Backport useful code from fixes for bug 1447.Werner Koch1-0/+10
* configure.ac: Cehck for inet_ntop. * m4/libcurl.m4: Provide a #define for the version of the curl library. -- We do not have keyserver helpers anymore but this fixes may come handy eventually.
2014-03-07Improve libcurl detection.Werner Koch1-1/+5
* m4/libcurl.m4: Do not use AC_PATH_PROG if --with-libcurl as been given. Suggested by John Marshall. -- GnuPG-bug-id: 1510 (cherry picked from commit 110b52fffa77b339e6d59eba939408f7e87e7138)
2012-12-10config: Update npth.m4.Werner Koch1-9/+32
* m4/npth.m4: Take from current npth master.
2012-01-25Port to npth.Marcus Brinkmann1-0/+89
* 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 Koch2-4/+12
* 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-28accept --with-libgpg-error-prefix as well as --with-gpg-error-prefixJim Meyering1-2/+12
* m4/gpg-error.m4: Update from git master.
2011-09-12Fixed regression in libcurl.m4Werner Koch2-1/+6
Fixed lost hash sign introduced by previous change (2011-04-08). Reported by John Marshall.
2011-08-10Fix autoconf warnings and update config.* files.Werner Koch3-10/+15
2011-03-01Update some M4 files and AUTHORS.Werner Koch4-17/+33
2011-02-23Update gpg-error.m4 and libgcrypt.m4Werner Koch3-8/+40
2010-06-09Merged Dirmngr with GnuPG.Werner Koch2-1/+6
A few code changes to support dirmngr.
2009-09-04.Werner Koch1-1/+1
2009-09-03Updated the german translationWerner Koch2-0/+5
2008-04-23Fixed a C-89 incompatibility.Werner Koch4-0/+84
Minor changes to make it build on Debian bo. Thanks to Alain Guibert.
2008-02-15Preparing a test releaseWerner Koch5-108/+242
2007-12-17Fixed a W32 ldaps problem.Werner Koch2-1/+8
2007-06-152007-06-15 Marcus Brinkmann <[email protected]>Marcus Brinkmann2-2/+3
* Makefile.am (EXTRA_DIST): Remove inttypes-h.m4, longlong.m4 and ulonglong.m4.
2007-06-152007-06-15 Marcus Brinkmann <[email protected]>Marcus Brinkmann2-1/+5
* Makefile.am (EXTRA_DIST): Remove inttypes-h.m4.
2007-06-06First steps towards supporting W32.Werner Koch4-110/+13
This is mainly source code reorganization. Update gnulib. g10/ does currently not build.
2007-05-15Use estream_asprintf instead of the GNU asprintf.Werner Koch3-0/+56
2007-05-09Preparing 2.0.4gnupg-2.0.4Werner Koch5-7/+20
2007-05-07Upgraded gettext.Werner Koch15-380/+560
Fixed accidental dependency on libgcrypt 1.3.0.
2006-12-13Added missing files.Werner Koch4-0/+440
Changed direntry in gnupg.texi from gpg to gpg2.
2006-11-21No more warnings for AMD64 (at least when cross-compiling). Thus tehre is aWerner Koch29-345/+553
good chance that gpg2 will now work. Other cleanups. Updated gettext.
2006-11-20Made some PIN pads work.Werner Koch2-0/+6
Some cleanups for 64 bit CPUs.
2006-11-14Silent GETEVENT command. Requires latest libassuan.Werner Koch2-2/+21
agent/ * command.c (post_cmd_notify, io_monitor): New. (register_commands, start_command_handler): Register them.
2006-10-10Various changesWerner Koch4-28/+237
2006-09-06Minor changes and typo fixes.Werner Koch1-3/+36
2006-08-27Missing m4 macrosDavid Shaw3-0/+345
2006-08-16With --enable-gpg the keyservers are now build and a first test using gpg2Werner Koch2-2/+2
shows no prblems. Needs more testing of course.
2006-07-27Preparing a new releasegnupg-1.9.22Werner Koch3-1/+42
2006-07-12* tar-ustar.m4: Use dd instead of strings as it's more likely to beDavid Shaw2-1/+6
around. Suggested by Nelson H. F. Beebe.
2006-07-11* tar-ustar.m4: Not all greps know the -q (quiet) flag, so redirect toDavid Shaw2-2/+5
/dev/null instead.
2006-07-11* tar-ustar.m4: Pass tar data through strings so that greps that don'tDavid Shaw2-1/+7
grep in binary files (Solaris) can detect the string. Noted by Mark Davies.
2006-06-30Added keyserver directory from trunkWerner Koch3-0/+104
2006-06-25About to do a new releaseWerner Koch2-1/+14
2006-05-222006-05-22 Marcus Brinkmann <[email protected]>Marcus Brinkmann2-0/+59
* configure.ac: Remove check for noexecstack and invoke CL_AS_NOEXECSTACK instead. m4/ 2006-05-22 Marcus Brinkmann <[email protected]> * noexecstack.m4: New file.
2006-05-10* libcurl.m4: Fix mistaken AC_SUBST when curl is not found.David Shaw2-1/+8