openbsd-ports/www/retawq/patches/patch-tool_tlsmode

15 lines
599 B
Plaintext
Raw Normal View History

2009-03-24 11:34:34 -04:00
$OpenBSD: patch-tool_tlsmode,v 1.2 2009/03/24 15:34:34 naddy Exp $
--- tool/tlsmode.orig Sun Mar 19 08:21:23 2006
+++ tool/tlsmode Tue Mar 24 16:32:20 2009
2008-12-08 13:04:52 -05:00
@@ -38,8 +38,8 @@ case "x$option_tls" in
cflags=`libgnutls-config --cflags`;
liblink=`libgnutls-config --libs` ;;
x2) # xopenssl | xOpenSSL)
- cflags=`pkg-config --cflags openssl`;
- liblink=`pkg-config --libs openssl` ;;
+ cflags='-I/usr/include/openssl';
2009-03-24 11:34:34 -04:00
+ liblink='-lssl -lcrypto';;
2008-12-08 13:04:52 -05:00
x3) # xmatrixssl | xMatrixSSL)
liblink='-lmatrixssl' ;;
*) echo "$me: bad OPTION_TLS parameter" >&2; (exit 1); exit 1 ;;