diff options
author | Werner Koch <[email protected]> | 2018-11-05 11:47:44 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-11-05 12:19:33 +0000 |
commit | 593895a5e495c4647efa7db164356f3cae3d5759 (patch) | |
tree | fe051bfd7b1f919d218ae2851f5afa302ef30544 | |
parent | speedo: Include Windows patch for gpgme 1.12.0 (diff) | |
download | gnupg-593895a5e495c4647efa7db164356f3cae3d5759.tar.gz gnupg-593895a5e495c4647efa7db164356f3cae3d5759.zip |
speedo: Remove obsolete configure option of gpgme.
* 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]>
(cherry picked from commit d7323bb2d957fbeb8192c0ecbd99b1d14d302912)
Diffstat (limited to '')
-rw-r--r-- | build-aux/speedo.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk index bfbce054d..9c4189a99 100644 --- a/build-aux/speedo.mk +++ b/build-aux/speedo.mk @@ -521,12 +521,12 @@ endif # The LDFLAGS is needed for -lintl for glib. ifeq ($(WITH_GUI),1) speedo_pkg_gpgme_configure = \ - --enable-static --enable-w32-glib --disable-w32-qt \ + --enable-static --enable-w32-glib \ --with-gpg-error-prefix=$(idir) \ LDFLAGS=-L$(idir)/lib else speedo_pkg_gpgme_configure = \ - --disable-static --disable-w32-glib --disable-w32-qt \ + --disable-static --disable-w32-glib \ --with-gpg-error-prefix=$(idir) \ LDFLAGS=-L$(idir)/lib endif |