Pedro Monreal Gonzalez
b531427812
- Fix builds with qt and qt6 [T6673]: * qt,tests: Fix build in source directory. Include Qt binding sources before C++ binding sources and C sources. This fixes the problem that the debug.h in the C sources was found before the one in the Qt bindings. * build: Suggest out-of-source build. Suggest to run configure from a build subdirectory. * Add patches: - gpgme-qt-tests-Fix-build-in-source-directory.patch - gpgme-build-Suggest-out-of-source-build.patch - Update to 1.22.0: * Prevent wrong plaintext when verifying clearsigned signature. * Return bad data error instead of general error on unexpected data. * Take care of offline mode for all operations of gpgsm engine. * Prepare the use of the forthcoming libassuan version 3. * New configure option --with-libtool-modification. * cpp: Expose gpgme_decrypt_result_t.is_mime. * qt: Clean up after failure or cancel of sign/encrypt archive operation. * qt: Add setInputEncoding to QGpgMe::EncryptJob. * qt: Make toLogString helper public. * Interface changes relative to the 1.21.0 release: - qt: EncryptJob::setInputEncoding NEW. - qt: DecryptionResult::isMime NEW. - qt: toLogString NEW. OBS-URL: https://build.opensuse.org/request/show/1105236 OBS-URL: https://build.opensuse.org/package/show/Base:System/gpgme?expand=0&rev=156
28 lines
733 B
Diff
28 lines
733 B
Diff
From 24a8c279da98fe7e586a9fc3cd91175c9e60ffef Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= <dev@ingo-kloecker.de>
|
|
Date: Mon, 21 Aug 2023 21:32:40 +0200
|
|
Subject: build: Suggest out-of-source build
|
|
|
|
* autogen.rc (final_info): Suggest to run configure from a build
|
|
subdirectory.
|
|
--
|
|
|
|
We recommend out-of-source builds. The suggestion what to do next shown
|
|
by autogen.sh should reflect this.
|
|
|
|
GnuPG-bug-id: 6673
|
|
|
|
diff --git a/autogen.rc b/autogen.rc
|
|
index 1759ef93..6d6ea93f 100644
|
|
--- a/autogen.rc
|
|
+++ b/autogen.rc
|
|
@@ -11,4 +11,4 @@ case "$myhost" in
|
|
esac
|
|
|
|
|
|
-final_info="./configure --enable-maintainer-mode && make"
|
|
+final_info="mkdir build && cd build && ../configure --enable-maintainer-mode && make"
|
|
--
|
|
2.41.0
|
|
|