Commit 231b98a5 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Make OPENSSL_NO_COMP work under Win32.

parent 13e4670c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -678,7 +678,6 @@ bad:
			ERR_print_errors_fp(stderr);
			}
		}
#endif
	ssl_comp_methods = SSL_COMP_get_compression_methods();
	fprintf(stderr, "Available compression methods:\n");
	{
@@ -692,6 +691,7 @@ bad:
			fprintf(stderr, "  %d: %s\n", c->id, c->name);
			}
	}
#endif

#if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
	if (ssl2)
+1 −0
Original line number Diff line number Diff line
@@ -954,6 +954,7 @@ sub read_options
				}
			}
		}
	elsif (/^no-comp$/) { $xcflags = "-DOPENSSL_NO_COMP $xcflags"; }
	elsif (/^enable-zlib$/) { $xcflags = "-DZLIB $xcflags"; }
	elsif (/^enable-zlib-dynamic$/)
		{