bitchx, revbump for openssl3 (#11032)

This commit is contained in:
Schrijvers Luc
2024-09-01 20:19:55 +02:00
committed by GitHub
parent eecf48bdd5
commit 227ea1e87f
2 changed files with 42 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ COPYRIGHT="1990 Michael Sandroff
1996-2004 Colten Edwards et al.
2008-2014 Kevin Easton et al."
LICENSE="BSD (3-clause)"
REVISION="3"
REVISION="4"
SOURCE_URI="https://download.sourceforge.net/bitchx/bitchx-$portVersion.tar.gz"
CHECKSUM_SHA256="2d270500dd42b5e2b191980d584f6587ca8a0dbda26b35ce7fadb519f53c83e2"
PATCHES="bitchx-$portVersion.patchset"
@@ -46,7 +46,7 @@ BUILD_REQUIRES="
haiku_devel
devel:libcrypto
devel:libncursesw
devel:libssl
devel:libssl >= 3
"
BUILD_PREREQUIRES="
cmd:autoreconf

View File

@@ -1,4 +1,4 @@
From d64c55076c0ebca0ca2bf62d8d00a6ae7feda532 Mon Sep 17 00:00:00 2001
From 054325f7811208213801b1bfb28ae8b6ad6ab766 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Zolt=C3=A1n=20Mizsei?= <zmizsei@extrowerk.com>
Date: Sat, 10 Nov 2018 12:46:03 +0100
Subject: Build fix for gcc2
@@ -19,10 +19,10 @@ index 36bba31..20bccf7 100644
{
if (notify_win->miscflags & WINDOW_NOTIFIED)
--
2.19.1
2.45.2
From 99df4a2c4fe1a9436bd940b7adcad6bd25b8ffc4 Mon Sep 17 00:00:00 2001
From 1a20cb0b1bb177a4f9e48a141dc577bda1700967 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Zolt=C3=A1n=20Mizsei?= <zmizsei@extrowerk.com>
Date: Sat, 10 Nov 2018 12:51:33 +0100
Subject: bcopy fix from keaston
@@ -42,5 +42,41 @@ index 29400c2..0ab5279 100644
#endif
--
2.19.1
2.45.2
From cb16f5619fe46eb60012b3b12a8868a4f5937fba Mon Sep 17 00:00:00 2001
From: Schrijvers Luc <begasus@gmail.com>
Date: Sun, 1 Sep 2024 20:14:14 +0200
Subject: Fix multiple defenitions errors
diff --git a/source/modules.c b/source/modules.c
index 2a0d305..72ec802 100644
--- a/source/modules.c
+++ b/source/modules.c
@@ -83,7 +83,7 @@ extern int (*dcc_output_func) (int, int, char *, int);
extern int (*dcc_input_func) (int, int, char *, int, int);
extern int (*dcc_close_func) (int, unsigned long, int);
-int (*serv_open_func) (int, unsigned long, int);
+extern int (*serv_open_func) (int, unsigned long, int);
extern int (*serv_output_func) (int, int, char *, int);
extern int (*serv_input_func) (int, char *, int, int, int);
extern int (*serv_close_func) (int, unsigned long, int);
diff --git a/source/numbers.c b/source/numbers.c
index 939b9af..22a056d 100644
--- a/source/numbers.c
+++ b/source/numbers.c
@@ -66,7 +66,7 @@ void show_server_map (void);
int stats_k_grep (char **);
void who_handlekill (char *, char *, char *);
void handle_tracekill (int, char *, char *, char *);
-int no_hook_notify;
+extern int no_hook_notify;
extern AJoinList *ajoin_list;
void remove_from_server_list (int);
--
2.45.2