]> granicus.if.org Git - apache/commitdiff
Merge 1821767 from trunk:
authorRainer Jung <rjung@apache.org>
Thu, 15 Mar 2018 22:46:27 +0000 (22:46 +0000)
committerRainer Jung <rjung@apache.org>
Thu, 15 Mar 2018 22:46:27 +0000 (22:46 +0000)
LibreSSL doesn't have or require applink.c

Submitted by: rjung
Reviewed by: rjung, ylavic, covener

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1826885 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
support/ab.c

diff --git a/CHANGES b/CHANGES
index b53f81b51de703fd0c7b033e10cba148dd7de929..f62ef5dfee1d2adc0d160ea551fb625c7af67357 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,8 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.4.33
 
+  *) ab: LibreSSL doesn't have or require Windows applink.c.  [Gregg L. Smith]
+
 Changes with Apache 2.4.32
 
   *) mod_access_compat: Fail if a comment is found in an Allow or Deny
diff --git a/STATUS b/STATUS
index 67153a888d2f06f487a8640836c94866041b065a..eaaa95de3a84077007dbaba9758e512111699976 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -126,12 +126,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
      2.4.x patch: svn merge -c 1826686 ^/httpd/httpd/trunk .
      +1: jailletc36, ylavic, covener
 
-  *) ab: LibreSSL doesn't have or require applink.c
-     trunk patch: http://svn.apache.org/r1821767
-     2.4.x patch: svn merge -c 1821767 ^/httpd/httpd/trunk .
-                  plus CHANGES
-     +1: rjung, ylavic, covener
-
   *) htpasswd: don't point to (unused) stack memory on output
      to make static analysers happy.  PR 60634.
      trunk patch: http://svn.apache.org/r1781509
index 3d546afc779327522e96e9e517313084f4145521..9dfd616e89540d5e7ef6b29abec7975514c04df8 100644 (file)
 #define SK_VALUE(x,y) sk_X509_value(x,y)
 typedef STACK_OF(X509) X509_STACK_TYPE;
 
-#if defined(_MSC_VER)
+#if defined(_MSC_VER) && !defined(LIBRESSL_VERSION_NUMBER)
 /* The following logic ensures we correctly glue FILE* within one CRT used
  * by the OpenSSL library build to another CRT used by the ab.exe build.
  * This became especially problematic with Visual Studio 2015.