summarylogtreecommitdiffstats
path: root/0002-meson-Fix-typos-in-crypto-library-detection.patch
diff options
context:
space:
mode:
authorNicola Murino2022-05-17 10:36:59 +0200
committerNicola Murino2022-05-17 10:36:59 +0200
commit20494667edff82ae13e7ebf4f33024a98ef9dafd (patch)
tree5b8aafd3472a753f130173396773a8cf7524650c /0002-meson-Fix-typos-in-crypto-library-detection.patch
parent3f4095f10ed032277911acf112aeaf382d817e90 (diff)
downloadaur-20494667edff82ae13e7ebf4f33024a98ef9dafd.tar.gz
Update to 0.1.19
Diffstat (limited to '0002-meson-Fix-typos-in-crypto-library-detection.patch')
-rw-r--r--0002-meson-Fix-typos-in-crypto-library-detection.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/0002-meson-Fix-typos-in-crypto-library-detection.patch b/0002-meson-Fix-typos-in-crypto-library-detection.patch
deleted file mode 100644
index 5ccfcc6bddfc..000000000000
--- a/0002-meson-Fix-typos-in-crypto-library-detection.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From e75f9730c64301f68aaf42bb8d1e8d7ccf9cd6d5 Mon Sep 17 00:00:00 2001
-From: Nirbheek Chauhan <nirbheek@centricular.com>
-Date: Tue, 16 Jun 2020 03:54:28 +0530
-Subject: [PATCH 2/2] meson: Fix typos in crypto-library detection
-
----
- meson.build | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/meson.build b/meson.build
-index 0004d91..5b876de 100644
---- a/meson.build
-+++ b/meson.build
-@@ -189,7 +189,7 @@ gthread_dep = dependency('gthread-2.0',
-
- # Cryto library
- opt_cryptolib = get_option('crypto-library')
--message('Crypto librar requested: ' + opt_cryptolib)
-+message('Crypto library requested: ' + opt_cryptolib)
- if opt_cryptolib != 'openssl'
- crypto_dep = dependency('gnutls', version: gnutls_req, required: false)
- cdata.set('HAVE_GNUTLS', crypto_dep.found())
-@@ -243,7 +243,7 @@ endif
- if not crypto_dep.found()
- if opt_cryptolib == 'gnutls'
- error('GnuTLS requested as crypto library, but not found')
-- elif opt_cryptolib == 'gnutls'
-+ elif opt_cryptolib == 'openssl'
- error('OpenSSL requested as crypto library, but not found')
- else
- error('Either GnuTLS or OpenSSL is required as crypto library, but neither was found')
---
-2.27.0.windows.1
-