mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
Remove more gnutls references.
This commit is contained in:
parent
271a98feb1
commit
6a25507e90
3 changed files with 3 additions and 4 deletions
|
@ -27,8 +27,7 @@ Necessary Requirements:
|
|||
Feature Specific Requirements:
|
||||
|
||||
- For SSL Clients, SSL Challenge controlled OPER feature, and encrypted server links,
|
||||
a working OpenSSL library or GnuTLS library. CHALLENGE is not supported on GnuTLS
|
||||
yet.
|
||||
a working OpenSSL library.
|
||||
|
||||
- For encrypted oper and (optional) server passwords, a working DES, MD5, or SHA library
|
||||
implementing crypt().
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
#if !defined(HAVE_OPENSSL) && !defined(HAVE_GNUTLS) && !defined(HAVE_ARC4RANDOM)
|
||||
#if !defined(HAVE_OPENSSL) && !defined(HAVE_ARC4RANDOM)
|
||||
void arc4random_stir(void);
|
||||
uint32_t arc4random(void);
|
||||
void arc4random_addrandom(uint8_t *dat, int datlen);
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <libratbox_config.h>
|
||||
#include <ratbox_lib.h>
|
||||
|
||||
#if !defined(HAVE_OPENSSL) && !defined(HAVE_GNUTLS) && !defined(HAVE_ARC4RANDOM)
|
||||
#if !defined(HAVE_OPENSSL) && !defined(HAVE_ARC4RANDOM)
|
||||
|
||||
#include "arc4random.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue