Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
635
Issues
635
List
Boards
Labels
Service Desk
Milestones
Merge Requests
105
Merge Requests
105
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
7c5d5a79
Commit
7c5d5a79
authored
Aug 01, 2002
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1349. [security] Mimimum OpenSSL version now 0.9.6e (was 0.9.5a).
http://www.cert.org/advisories/CA-2002-23.html
parent
1aed0905
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
9 deletions
+12
-9
CHANGES
CHANGES
+3
-0
configure
configure
+5
-5
configure.in
configure.in
+4
-4
No files found.
CHANGES
View file @
7c5d5a79
1349. [security] Mimimum OpenSSL version now 0.9.6e (was 0.9.5a).
http://www.cert.org/advisories/CA-2002-23.html
1348. [port] Win32: Rewrote code to use I/O Completion Ports
in socket.c and eliminating a host of socket
errors. Performance is enhanced.
...
...
configure
View file @
7c5d5a79
#! /bin/sh
# From configure.in Revision: 1.32
7
.
# From configure.in Revision: 1.32
8
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53.
#
...
...
@@ -4373,11 +4373,11 @@ else
#include <stdio.h>
#include <openssl/opensslv.h>
int main() {
if (OPENSSL_VERSION_NUMBER >= 0x0090
581
fL)
if (OPENSSL_VERSION_NUMBER >= 0x0090
605
fL)
return (0);
printf("\n\nFound OPENSSL_VERSION_NUMBER %#010x\n",
OPENSSL_VERSION_NUMBER);
printf("Require OPENSSL_VERSION_NUMBER 0x0090
581
f or greater
\n\n
");
printf("Require OPENSSL_VERSION_NUMBER 0x0090
605
f or greater\n\n");
return (1);
}
...
...
@@ -4402,8 +4402,8 @@ cat conftest.$ac_ext >&5
( exit $ac_status )
echo "$as_me:$LINENO: result: not compatible" >&5
echo "${ECHO_T}not compatible" >&6
{
{
echo
"
$as_me
:
$LINENO
: error: you need OpenSSL 0.9.
5a
or newer"
>
&5
echo
"
$as_me
: error: you need OpenSSL 0.9.
5a
or newer"
>
&2
;
}
{ { echo "$as_me:$LINENO: error: you need OpenSSL 0.9.
6e
or newer" >&5
echo "$as_me: error: you need OpenSSL 0.9.
6e
or newer" >&2;}
{ (exit 1); exit 1; }; }
fi
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
...
...
configure.in
View file @
7c5d5a79
...
...
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.32
7
$)
AC_REVISION($Revision: 1.32
8
$)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.13)
...
...
@@ -395,17 +395,17 @@ shared library configuration (e.g., LD_LIBRARY_PATH).)],
#include <stdio.h>
#include <openssl/opensslv.h>
int main() {
if (OPENSSL_VERSION_NUMBER >= 0x0090
581
fL)
if (OPENSSL_VERSION_NUMBER >= 0x0090
605
fL)
return (0);
printf("\n\nFound OPENSSL_VERSION_NUMBER %#010x\n",
OPENSSL_VERSION_NUMBER);
printf("Require OPENSSL_VERSION_NUMBER 0x0090
581
f or greater\n\n");
printf("Require OPENSSL_VERSION_NUMBER 0x0090
605
f or greater\n\n");
return (1);
}
],
[AC_MSG_RESULT(ok)],
[AC_MSG_RESULT(not compatible)
AC_MSG_ERROR(you need OpenSSL 0.9.
5a
or newer)],
AC_MSG_ERROR(you need OpenSSL 0.9.
6e
or newer)],
[AC_MSG_RESULT(assuming target platform has compatible version)])
CFLAGS="$saved_cflags"
LIBS="$saved_libs"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment