Remove more gnutls references.

This commit is contained in:
Jilles Tjoelker 2012-04-18 00:38:44 +02:00
parent 271a98feb1
commit 6a25507e90
3 changed files with 3 additions and 4 deletions

View File

@ -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().

View File

@ -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);

View File

@ -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"