Skip to content

Commit b46fb1f

Browse files
committed
Disable C warnings
This disable 3 warnings. The second warning `deprecated-declarations` is probably the worst because it indicates that the OpenSSL C library intends to make the deprecated function inaccessible at some point in the future. See: #95
1 parent 53dcbf9 commit b46fb1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HsOpenSSL.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Library
159159
Default-Language:
160160
Haskell2010
161161
GHC-Options:
162-
-Wall
162+
-Wall -optc=-Wno-discarded-qualifiers -optc=-Wno-deprecated-declarations -optc=-Wno-incompatible-pointer-types
163163
C-Sources:
164164
cbits/HsOpenSSL.c
165165
Include-Dirs:

0 commit comments

Comments
 (0)