366ddf93550ccfa3a4b122f3df88429ced4db32d
galt
  Thu Mar 30 21:22:13 2017 -0700
oops. conditional comp version needs to match parameters.

diff --git src/lib/https.c src/lib/https.c
index 68e64b6..b944f37 100644
--- src/lib/https.c
+++ src/lib/https.c
@@ -481,23 +481,23 @@
     errAbort("Unexpected error %d from pthread_create(): %s",rc,strerror(rc));
     }
 
 /* parent */
 
 return params->sv[0];
 
 }
 
 #else
 
 #include <stdarg.h>
 #include "common.h"
 #include "errAbort.h"
 
-int netConnectHttps(char *hostName, int port)
+int netConnectHttps(char *hostName, int port, boolean noProxy)
 /* Start https connection with server or die. */
 {
 errAbort("No openssl available in netConnectHttps for %s : %d", hostName, port);
 return -1;   /* will never get to here, make compiler happy */
 }
 
 #endif