1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: Fix compilation with gcc-14
This fix is a workaround until the upstream fixed this bug
https://github.com/haskell-cryptography/HsOpenSSL/issues/88
.
haskell-hsopenssl (0.11.7.7-1) unstable; urgency=medium
.
* New upstream release
Author: Picca Frédéric-Emmanuel <picca@debian.org>
---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2024-08-04
Index: b/HsOpenSSL.cabal
===================================================================
--- a/HsOpenSSL.cabal
+++ b/HsOpenSSL.cabal
@@ -147,6 +147,8 @@ Library
Default-Language:
Haskell2010
GHC-Options:
+ -optc=-Wno-deprecated-declarations
+ -optc=-Wno-incompatible-pointer-types
-Wall
C-Sources:
cbits/HsOpenSSL.c
|