From: Bodo Möller Date: Thu, 18 Jan 2001 12:41:25 +0000 (+0000) Subject: As in the main branch, there's no longer a need to guess the bc X-Git-Tag: OpenSSL_0_9_6a-beta1~90 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2e72fde15f08440ecfaf7740074e609dbce58573;p=oweals%2Fopenssl.git As in the main branch, there's no longer a need to guess the bc version at compile time. --- diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c index 0a97af69c5..c9801dc016 100644 --- a/crypto/bn/bntest.c +++ b/crypto/bn/bntest.c @@ -107,11 +107,9 @@ static const char rnd_seed[] = "string to make the random number generator think static void message(BIO *out, char *m) { fprintf(stderr, "test %s\n", m); -#if defined(linux) || defined(__FreeBSD__) /* can we use GNU bc features? */ BIO_puts(out, "print \"test "); BIO_puts(out, m); BIO_puts(out, "\\n\"\n"); -#endif } int main(int argc, char *argv[])