aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/speedo.mk (follow)
Commit message (Collapse)AuthorAgeFilesLines
* doc: Minor speedo build clarificationWerner Koch13 days1-3/+3
| | | | | | | | -- Using the given command line for installation is almost always good, so don't confuse the user with the first sentence. Also explain how to disable systemd for keyboxd and dirmngr.
* speedo: Do not build gpgme anymore.Werner Koch2025-02-211-23/+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.
* speedo: Do not package zlib and bzip2 object filesWerner Koch2025-01-141-0/+4
| | | | | | * build-aux/speedo.mk (dist-source): Exclude them. -- GnuPG-bug-id: 7442
* speedo: Change the default to build a 64 bit versionWerner Koch2024-12-061-3/+3
| | | | | * build-aux/speedo.mk (W32VERSION): Default to 64 bit. * build-aux/speedo/w32/inst.nsi: Remove the doc dir.
* speedo: Enable additional runtime protections on Windows.Werner Koch2024-10-291-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)
* speedo: Make use of wget more robustWerner Koch2024-09-191-1/+6
| | | | | | | * build-aux/getswdb.sh: Add option --wgetopt. * build-aux/speedo.mk (WGETOPT): New. (getswdb_options): Pass to getswdb. (unpack): Use wget with new options.
* doc: Updated comments in speedo.mkWerner Koch2024-09-111-5/+6
| | | | --
* speedo,w32: Install ntbtls as a libraryAndre Heinecke2024-08-131-6/+1
| | | | | | | | | | | | | | * 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.
* speedo,w32: Fix check for gpg-authcode-sign.shAndre Heinecke2024-08-081-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."
* Revert "speedo: Use remote gitrep if local does not exist"Werner Koch2024-07-231-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.
* speedo,w32: configure --libdir for w32 buildsAndre Heinecke2024-07-141-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.
* speedo: Add VERBOSE variableAndre Heinecke2024-07-141-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.
* speedo: Use remote gitrep if local does not existAndre Heinecke2024-07-141-2/+5
| | | | | * build-aux/speedo.mk (gitrep): If the local path is not a directory. Use the remote repo as fallback.
* speedo: Use nproc if available for make jobsAndre Heinecke2024-07-141-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.
* speedo: Set PREFIX for bzip2 build also for Unix.Werner Koch2024-07-081-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.
* speedo: Let install also copy the SO's symlinks.Werner Koch2024-07-051-3/+3
| | | | | * build-aux/speedo.mk (install-speedo): Also instal the sumlinks for the SOs.
* speedo,w32: Also sign the new libassuan SO name.Werner Koch2024-07-011-1/+1
| | | | --
* speedo,w32: Add extra flags for gpgrt and fix SO name of libassuan.Werner Koch2024-07-011-0/+2
| | | | | | | | | | -- 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.
* indent: Fix spellingDaniel Kahn Gillmor2024-05-311-3/+3
| | | | | | | | | | | | | -- 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
* speedo: Update the instructions to use the gnupg26 tag.Werner Koch2024-05-021-5/+5
| | | | --
* speedo: Change install directory for WindowsWerner Koch2024-04-261-1/+4
| | | | | | | -- Given that we will build only 64 bit versions, we need to switch where stuff is installed on Windows.
* speedo: Do not use the gpg-error-config in the build systemWerner Koch2024-04-261-2/+2
| | | | | | -- With that installed we don't get proper suport for SYSROOT.
* speedo: Prepare for building 64 bit Windows versions.Werner Koch2024-04-261-12/+44
| | | | --
* speedo: Set gnupg_ver macro to gnupg26_ver.Werner Koch2024-04-261-2/+2
| | | | | | -- Also fixed a syntax erro rin AUTHENTICODE_sign
* speedo: Use gpg-authcode-sign.sh and change archive label to v2.5.Werner Koch2024-04-251-88/+7
| | | | --
* speedo: Add config variable for the timestamp service.Werner Koch2024-02-151-4/+11
| | | | --
* speedo: Improve parsing of the ~./.gnupg-autogen.rcWerner Koch2024-01-261-1/+1
| | | | | | -- We now allow spaces around the variable name and the value.
* speedo: Build zlib, bzip2 and sqlite also on Unix.Werner Koch2024-01-241-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.
* speedo: Add a hint to run ldconfigWerner Koch2024-01-231-0/+2
| | | | --
* speedo: Minor fix to the install targetWerner Koch2024-01-231-5/+5
| | | | --
* speedo: Add install target for Unix.Werner Koch2024-01-121-11/+56
| | | | | | | | * build-aux/speedo.mk: Default to SELFCHECK=0. (install, install-speedo): New targets. -- GnuPG-bug-id: 6710
* speedo: Patch ELF binaries to use built librariesWerner Koch2024-01-121-204/+47
| | | | | | | | * build-aux/speedo.mk: Remove GUI stuff. Add patchelf feature. * Makefile.am (speedo): New target. -- GnuPG-bug-id: 6710
* w32: Add keyboxd.exe to signed filesAndre Heinecke2023-07-211-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.
* build: Always build the wixlib with a releaseWerner Koch2023-05-301-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).
* speedo,w32: Adjustments for the new Unicode NSIS plugins.Werner Koch2023-04-261-2/+1
| | | | | | | | | * build-aux/speedo/w32/inst.nsi: Convert to UTF-8. Add Unicode statement. * build-aux/speedo.mk (installer): Remove -INPUTCHARSET. -- GnuPG-bug-id: 6448
* speedo: Update NSIS helper DLL from Gpg4winWerner Koch2023-04-261-3/+7
| | | | | | | | | * 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
* speedo: Fix regression due to switching from gcc 8.3 to 10.2Werner Koch2023-04-041-1/+5
| | | | | | * build-aux/speedo.mk (speedo_pkg_zlib_make_args): Use -static-libgcc. (cherry picked from commit 04f1d9649cfb9163907fe97d20821ddd1be44f82)
* speedo: Add updates from 2.2Werner Koch2022-12-161-10/+25
| | | | --
* Post release updatesWerner Koch2022-10-131-1/+1
| | | | --
* Release 2.3.8gnupg-2.3.8Werner Koch2022-10-131-1/+1
|
* speedo: Fix for a libgpg-error-config regression.Werner Koch2022-10-131-2/+2
| | | | --
* speedo: Fix authenticode signingWerner Koch2022-04-211-0/+29
| | | | --
* speedo: Automatically select Authenticode signing cert.Werner Koch2021-04-221-1/+1
| | | | | | | | | -- This is required because GlobalSign re-issued the certificate (which actually required to install InternetExploder in addition to Edge) and now we have two certs to select from. The /a option seems to use the latest generated certificate.
* build: new option to disable building of tpm2daemonWerner Koch2021-03-151-1/+1
| | | | | | | | | | * configure.ac (build_tpmd): New configure option --disable-tpm2d (BUILD_WITH_TPM2D): New. * Makefile.am (tests): Use conditionally BUILD_TPM2D instead of HAVE_LIBTSS. * build-aux/speedo.mk (speedo_pkg_gnupg_configure) [W32]: Do not build tpm2d. * autogen.rc: Ditto.
* speedo: Update w32 stuff from 2.2Werner Koch2021-02-181-21/+48
| | | | | | | | | | | | * build-aux/speedo.mk: Update from 2.2. Add target w32-msi-release. * build-aux/speedo/w32/inst.nsi: Fix location of doc files. * build-aux/speedo/w32/wixlib.wxs: Add gpg-card and fix a wrong name. * Makefile.am (release): Support a WITH_MSI variable. (wixlibfile): Improve copying to archive. (release): Use AMTAR instead of TAR. -- Signed-off-by: Werner Koch <[email protected]>
* speedo: Allow customizing the release processWerner Koch2020-08-261-12/+53
| | | | --
* speedo, w32: Add w32-wixlib target for MSI packageAndre Heinecke2019-08-081-2/+87
| | | | | | | | | | | | | | | | | | | | | | | | | * Makefile.am (EXTRA_DIST): Add wixlib.wxs * build-aux/speedo.mk (w32-wixlib): New target. (w32-release): Build wixlib if WIXPREFIX is set. (help): Add documentation. * build-aux/speedo/w32/wixlib.wxs -- This build a wixlib of the Windows binaries of GnuPG. A wixlib is a module that can be linked into another wix project to create an installer including this module. Gpg4win uses the wixlib from GnuPG for it's MSI Package. To build the wixlib you need wine with wine-mono installed and the wixtoolset. When calling speedo set the variable WIXPREFIX to the location containing the extracted toolset. e.g.: make -f build-aux/speedo.mk w32-wixlib WIXPREFIX=~/wix
* build: Sign all Windows binaries.Werner Koch2019-08-081-7/+71
| | | | | | | | | | | | | | | | | | * build-aux/speedo.mk (AUTHENTICODE_SIGNHOST): New. (AUTHENTICODE_TOOL): New. (AUTHENTICODE_FILES): New. (installer): Sign listed files. (AUTHENTICODE_SIGNHOST): New macro. (sign-installer): Use that macro instead of direct use of osslsigncode. -- This also adds code to support signing via a Token. Because there is no specification of that token, I was not able to write a free driver for it. Thus we resort to use a running Windows-10 instance with an enabled ssh server to do the code signing. Signed-off-by: Werner Koch <[email protected]> (cherry picked from commit e6901c2bc802996c24335bcb35012ccb74b4ced0)
* speedo: Fix installer build with NSIS-3Andre Heinecke2019-03-181-2/+4
| | | | | | | | * build-aux/speedo.mk: Add charset for nsis 3. -- NSIS-3 defaults to UTF-8 but for NSIS-2 compatibility we still stay on CP1252 for now.
* speedo: Remove obsolete configure option of gpgme.Werner Koch2018-11-051-2/+2
| | | | | | | | | | * build-aux/speedo.mk (speedo_pkg_gpgme_configure): Remove --disable-w32-qt option. -- This option is obsolete since GPGME 1.7 (in 2016) Signed-off-by: Werner Koch <[email protected]>