1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

Upgrade to 0.8.15.

PR:		ports/145363
Submitted by:	Jase Thew <freebsd at beardz.net>
This commit is contained in:
Vanilla I. Shu 2010-04-07 01:53:34 +00:00
parent 0776dbed20
commit e995d60859
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=252352
5 changed files with 14 additions and 45 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= irssi
PORTVERSION= 0.8.14
PORTREVISION?= 1
PORTVERSION= 0.8.15
CATEGORIES?= irc
MASTER_SITES= http://mirror.irssi.org/

View File

@ -1,3 +1,3 @@
MD5 (irssi-0.8.14.tar.bz2) = 00efe7638dd596d5930dfa2aeae87b3a
SHA256 (irssi-0.8.14.tar.bz2) = 63ea70eb1ce6fb3c995e984f919dcd18882e916478779dd899de9385ef8fdf28
SIZE (irssi-0.8.14.tar.bz2) = 944708
MD5 (irssi-0.8.15.tar.bz2) = 1dcb3f511b88df94b0c996f36668c7da
SHA256 (irssi-0.8.15.tar.bz2) = c12d16fb605103d7c256ddce44012dc396af57f3771e086d0387c195a052a0a6
SIZE (irssi-0.8.15.tar.bz2) = 948847

View File

@ -0,0 +1,10 @@
--- src/core/network-openssl.c.orig 2010-04-03 17:32:04.000000000 +0000
+++ src/core/network-openssl.c 2010-04-03 17:37:34.000000000 +0000
@@ -406,6 +406,7 @@
g_error("Could not allocate memory for SSL context");
return NULL;
}
+ SSL_CTX_set_options(ctx, SSL_OP_ALL | SSL_OP_NO_SSLv2);
if (mycert && *mycert) {
char *scert = NULL, *spkey = NULL;

View File

@ -1,11 +0,0 @@
--- docs/Makefile.in.orig 2009-04-01 05:02:52.000000000 +0800
+++ docs/Makefile.in 2009-04-02 09:29:16.000000000 +0800
@@ -51,7 +51,7 @@
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
-man1dir = $(mandir)/man1
+man1dir = $(prefix)/man/man1
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)"
NROFF = nroff
MANS = $(man_MANS)

View File

@ -1,29 +0,0 @@
--- src/core/network-openssl.c.orig 2009-08-17 09:27:52.000000000 +0800
+++ src/core/network-openssl.c 2009-08-17 09:28:14.000000000 +0800
@@ -230,7 +230,7 @@
SSL_library_init();
SSL_load_error_strings();
- ssl_ctx = SSL_CTX_new(SSLv23_client_method());
+ ssl_ctx = SSL_CTX_new(SSLv3_client_method());
if(!ssl_ctx)
{
g_error("Initialization of the SSL library failed");
@@ -259,7 +259,7 @@
if (mycert && *mycert) {
char *scert = NULL, *spkey = NULL;
- if ((ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) {
+ if ((ctx = SSL_CTX_new(SSLv3_client_method())) == NULL) {
g_error("Could not allocate memory for SSL context");
return NULL;
}
@@ -279,7 +279,7 @@
if ((cafile && *cafile) || (capath && *capath)) {
char *scafile = NULL;
char *scapath = NULL;
- if (! ctx && (ctx = SSL_CTX_new(SSLv23_client_method())) == NULL) {
+ if (! ctx && (ctx = SSL_CTX_new(SSLv3_client_method())) == NULL) {
g_error("Could not allocate memory for SSL context");
return NULL;
}