aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-02-21speedo: Do not build gpgme anymore.Werner Koch3-56/+1
* build-aux/speedo.mk: Remove support gpgme. * build-aux/speedo/w32/inst.nsi: Ditto. * build-aux/speedo/w32/wixlib.wxs: Remove the gpgme components. -- GPGME is either already availabale on Unix platforms or can be installed on Widnows with gpg4win. GnuPG itself does not require gpgme.
2025-01-14speedo: Do not package zlib and bzip2 object filesWerner Koch1-0/+4
* build-aux/speedo.mk (dist-source): Exclude them. -- GnuPG-bug-id: 7442
2024-12-06speedo: Change the default to build a 64 bit versionWerner Koch2-3/+4
* build-aux/speedo.mk (W32VERSION): Default to 64 bit. * build-aux/speedo/w32/inst.nsi: Remove the doc dir.
2024-10-29speedo: Enable additional runtime protections on Windows.Werner Koch1-1/+1
* build-aux/speedo.mk (speedo_w32_cflags): Remove -mms-bitfields because it is for a long time the gcc default. Enable control flow protection. -- Note that due to mingw static linking problems with libssp the stack protector is not yet enabled. (cherry picked from commit afe87ffc08e14317f4ef5bbe2940d07203a43808)
2024-09-19speedo: Make use of wget more robustWerner Koch2-5/+15
* build-aux/getswdb.sh: Add option --wgetopt. * build-aux/speedo.mk (WGETOPT): New. (getswdb_options): Pass to getswdb. (unpack): Use wget with new options.
2024-09-11doc: Updated comments in speedo.mkWerner Koch1-5/+6
--
2024-08-13speedo,w32: Install ntbtls as a libraryAndre Heinecke3-6/+13
* build-aux/speedo.mk (AUTHENTICODE_FILES): Sign ntbtls files. (speedo_pkg_ntbtls_configure): Remove duplicated 32 bit entry. * build-aux/speedo/w32/inst.nsi, build-aux/speedo/w32/wixlib.wxs: Package ntblts dll. -- This changes ntbtls to be built with default options both on 64 bit and on 32 bit. Previously on 32 bit Windows it would have been linked statically. But since the file lists are hardcoded this should be independent of the architecture.
2024-08-08speedo,w32: Update libassuan dll name in wxsAndre Heinecke1-2/+2
* build-aux/speedo/w32/wixlib.wxs: Update name and UID for libassuan
2024-08-08speedo,w32: Fix check for gpg-authcode-sign.shAndre Heinecke1-1/+1
* build-aux/speedo.mk (AUTHENTICODE_sign): Do version check in subshell to get the return code. -- Otherwise this will fail not with the intended error message but with "no such file or directory."
2024-07-23Revert "speedo: Use remote gitrep if local does not exist"Werner Koch1-6/+3
-- Fixes-commit: 7a9214b0d41ecf1aacada79a850da05d558320ff. Using a remote repo is dangerous; for a local repo it can be expected that it has been properly pulled and checked.
2024-07-14speedo,w32: Fix InstallDir usage and x64 installAndre Heinecke1-44/+38
* build-aux/speedo/w32/inst.nsi (InstallDir): Move to the MUI definitions for clarity. (MULTIUSER_INSTALLMODE_INSTDIR): Use pretty name. (-gnupginst): Handle regviews and upgrades -- As MultiUser.nsh sets the INSTDIR variable we have to define MULTIUSER_USE_PROGRAMFILES64. The resulting installer created by makensis itself is still a 32bit binary we have to use SetRegView to use the correct registry hive for 64 bit software. To better handle the path switch from ProgramFiles (x86) to ProgramFiles on update we now call the uninstaller of the previous version before installing the new version. This additionally ensures that there are no leftover files and a dirty install directory after some upgrades.
2024-07-14speedo,w32: Remove share/doc subdirAndre Heinecke1-0/+1
* build-aux/speedo/w32/inst.nsi (-un.gnupg): Remove additional dir. -- Otherwise the folder tree is not completely removed on uninstall.
2024-07-14speedo,w32: Fix a nsi translationAndre Heinecke1-1/+1
* speedo/w32/inst.nsi: Remove superflous brace. -- This caused a warning and that the translation was not applied.
2024-07-14speedo,w32: configure --libdir for w32 buildsAndre Heinecke1-0/+3
* build-aux/speedo.mk (SETVARS): Set --libdir when cross compiling. -- This ensures that the libdir is reliably named "lib" instead of lib64 for 64 bit builds on systems which have this as the default. This fixes among other things that PKG_CONFIG_PATH is then set correctly.
2024-07-14speedo: Add VERBOSE variableAndre Heinecke1-9/+24
* build-aux/speedo.mk (VERBOSE): New variable. -- While the configuration output stays silent by default having the option to show it can be useful in case of errors.
2024-07-14speedo: Use remote gitrep if local does not existAndre Heinecke1-2/+5
* build-aux/speedo.mk (gitrep): If the local path is not a directory. Use the remote repo as fallback.
2024-07-14speedo: Use nproc if available for make jobsAndre Heinecke1-2/+4
* build-aux/speedo.mk (MAKE_J): Use nproc if it is available. -- Instead of hardcoding the make jobs value make it dependent on the build system.
2024-07-08speedo: Set PREFIX for bzip2 build also for Unix.Werner Koch1-0/+3
-- bzip2 is a make-only package and thus we can't set the prefix with configure. We need to set PREFIX here so that the install target: if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib;fi [...] does not try to install to the default PREFIX /usr/local/lib.
2024-07-05speedo: Let install also copy the SO's symlinks.Werner Koch1-3/+3
* build-aux/speedo.mk (install-speedo): Also instal the sumlinks for the SOs.
2024-07-01speedo,w32: Also sign the new libassuan SO name.Werner Koch1-1/+1
--
2024-07-01speedo,w32: Add extra flags for gpgrt and fix SO name of libassuan.Werner Koch2-2/+4
-- Due to the recently introduced use of STARTUPINFOEXW in gpgrt we now need at least Windows Vista. Version 8 of Mingw defaults to XP SP2 which requires us to explicit override that default. The SO number of libassuan needs an update too.
2024-05-31indent: Fix spellingDaniel Kahn Gillmor3-5/+5
-- These are non-substantive corrections for minor spelling mistakes within the GnuPG codebase. With something like this applied to the codebase, and a judiciously tuned spellchecker integrated as part of a standard test suite, it should be possible to keep a uniform orthography within the project. GnuPG-bug-id: 7116
2024-05-02speedo: Update the instructions to use the gnupg26 tag.Werner Koch1-5/+5
--
2024-04-26speedo: Change install directory for WindowsWerner Koch2-7/+15
-- Given that we will build only 64 bit versions, we need to switch where stuff is installed on Windows.
2024-04-26speedo: Do not use the gpg-error-config in the build systemWerner Koch1-2/+2
-- With that installed we don't get proper suport for SYSROOT.
2024-04-26speedo: Prepare for building 64 bit Windows versions.Werner Koch1-12/+44
--
2024-04-26speedo: Set gnupg_ver macro to gnupg26_ver.Werner Koch1-2/+2
-- Also fixed a syntax erro rin AUTHENTICODE_sign
2024-04-25speedo: Use gpg-authcode-sign.sh and change archive label to v2.5.Werner Koch1-88/+7
--
2024-02-29build: Extend getswdb.sh to allow a verified downloadWerner Koch1-4/+92
--
2024-02-29build: Make getswdb.sh usable outside the GniPG tree.Werner Koch1-2/+24
--
2024-02-15speedo: Add config variable for the timestamp service.Werner Koch1-4/+11
--
2024-01-30w32, msi: Fix directory of gpg-card, add keyboxdAndre Heinecke1-1/+4
* build-aux/speedo/w32/wixlib.wxs: Fix gpg-card directory id. Add keyboxd.
2024-01-26speedo: Improve parsing of the ~./.gnupg-autogen.rcWerner Koch1-1/+1
-- We now allow spaces around the variable name and the value.
2024-01-24speedo: Build zlib, bzip2 and sqlite also on Unix.Werner Koch1-9/+4
-- This avoids extra build dependencies. Note that bzip2 is not necessary statically linked but an existing bzip2 SO might be used. We would need to fix the bzip2 SO building and also provide a gnupg configure option to build statically against bzip2.
2024-01-23speedo: Add a hint to run ldconfigWerner Koch1-0/+2
--
2024-01-23speedo: Minor fix to the install targetWerner Koch1-5/+5
--
2024-01-12speedo: Add install target for Unix.Werner Koch1-11/+56
* build-aux/speedo.mk: Default to SELFCHECK=0. (install, install-speedo): New targets. -- GnuPG-bug-id: 6710
2024-01-12speedo: Patch ELF binaries to use built librariesWerner Koch1-204/+47
* build-aux/speedo.mk: Remove GUI stuff. Add patchelf feature. * Makefile.am (speedo): New target. -- GnuPG-bug-id: 6710
2023-07-21w32: Add keyboxd.exe to signed filesAndre Heinecke1-0/+1
* build-aux/speedo.mk (AUTHENTICODE_FILES): Add keyboxd.exe -- This should prevent that keyboxd.exe is blocked on systems that only allow signed executables.
2023-06-09speedo,w32: Call gpgconf --kill allAndre Heinecke1-3/+1
* build-aux/speedo/w32/inst.nsi: Use kill all instead of explicitly killing processes.
2023-06-09speedo,w32: Call gpgconf --kill allAndre Heinecke1-3/+1
* build-aux/speedo/w32/inst.nsi: Use kill all instead of explicitly killing processes.
2023-05-30build: Always build the wixlib with a releaseWerner Koch1-4/+2
-- Forgot it today again; better do it by default. Also disable sslsigncode verify due to missing certificate problem (for signing we use Scute).
2023-04-26speedo,w32: Adjustments for the new Unicode NSIS plugins.Werner Koch2-23/+25
* build-aux/speedo/w32/inst.nsi: Convert to UTF-8. Add Unicode statement. * build-aux/speedo.mk (installer): Remove -INPUTCHARSET. -- GnuPG-bug-id: 6448
2023-04-26speedo: Update NSIS helper DLL from Gpg4winWerner Koch5-261/+723
* build-aux/speedo/w32/inst.nsi: Re-enable run-once check. * build-aux/speedo/w32/exdll.c: New. * build-aux/speedo.mk (g4wihelp.dll): Change build commands. -- GnuPG-bug-id: 6448
2023-04-05speedo,w32: Remove removed profiles and temporary disable runonce.Werner Koch2-7/+2
--
2023-04-04speedo: Remove deleted prf files from the Windows installerWerner Koch1-4/+0
--
2023-04-04speedo: Fix regression due to switching from gcc 8.3 to 10.2Werner Koch1-1/+5
* build-aux/speedo.mk (speedo_pkg_zlib_make_args): Use -static-libgcc. (cherry picked from commit 04f1d9649cfb9163907fe97d20821ddd1be44f82)
2022-12-16speedo: Add updates from 2.2Werner Koch1-10/+25
--
2022-10-13Post release updatesWerner Koch1-1/+1
--
2022-10-13Release 2.3.8gnupg-2.3.8Werner Koch1-1/+1