mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: crda: Add forgotten patch.
This file should have been added as part of commit cc205da
.
* gnu/packages/patches/crda-optional-gcrypt.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
This commit is contained in:
parent
6e9f2913ba
commit
82700f0fb3
2 changed files with 21 additions and 0 deletions
|
@ -412,6 +412,7 @@ dist_patch_DATA = \
|
|||
gnu/packages/patches/cpio-fix-symlink-bad-length-test.patch \
|
||||
gnu/packages/patches/cpio-gets-undeclared.patch \
|
||||
gnu/packages/patches/cpufrequtils-fix-aclocal.patch \
|
||||
gnu/packages/patches/crda-optional-gcrypt.patch \
|
||||
gnu/packages/patches/crossmap-allow-system-pysam.patch \
|
||||
gnu/packages/patches/cssc-gets-undeclared.patch \
|
||||
gnu/packages/patches/cssc-missing-include.patch \
|
||||
|
|
20
gnu/packages/patches/crda-optional-gcrypt.patch
Normal file
20
gnu/packages/patches/crda-optional-gcrypt.patch
Normal file
|
@ -0,0 +1,20 @@
|
|||
This patch allows us to make the libgcrypt dependency optional (which it
|
||||
is, if you look at the code), which in turns allows us to build CRDA
|
||||
without the signature-checking capability on 'regulatory.bin'.
|
||||
|
||||
--- crda/Makefile 2015-07-17 11:33:33.546712893 +0200
|
||||
+++ crda/Makefile 2015-07-17 11:34:05.210994373 +0200
|
||||
@@ -45,12 +45,14 @@ LDLIBS += `pkg-config --libs openssl`
|
||||
$(LIBREG): keys-ssl.c
|
||||
|
||||
else
|
||||
+ifeq ($(USE_GCRYPT),1)
|
||||
CFLAGS += -DUSE_GCRYPT
|
||||
LDLIBS += -lgcrypt
|
||||
|
||||
$(LIBREG): keys-gcrypt.c
|
||||
|
||||
endif
|
||||
+endif
|
||||
MKDIR ?= mkdir -p
|
||||
INSTALL ?= install
|
Loading…
Reference in a new issue