summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2018-03-15 06:07:56 +0000
committerwiz <wiz@pkgsrc.org>2018-03-15 06:07:56 +0000
commite40f2bcef9421fd26a8512af2ec8041b68b6a866 (patch)
tree909e48918ffac7e1ec7c79773d4c85080f928322 /chat
parent5fd10c51eeaf45654d1ee53d1ad2e69d17328abc (diff)
downloadpkgsrc-e40f2bcef9421fd26a8512af2ec8041b68b6a866.tar.gz
eggdrop: remove patches that are not in distinfo
Diffstat (limited to 'chat')
-rw-r--r--chat/eggdrop/patches/patch-aa41
-rw-r--r--chat/eggdrop/patches/patch-ab41
-rw-r--r--chat/eggdrop/patches/patch-ac30
-rw-r--r--chat/eggdrop/patches/patch-ad13
-rw-r--r--chat/eggdrop/patches/patch-ae15
-rw-r--r--chat/eggdrop/patches/patch-af14
-rw-r--r--chat/eggdrop/patches/patch-ag58
-rw-r--r--chat/eggdrop/patches/patch-ah13
-rw-r--r--chat/eggdrop/patches/patch-ai25
-rw-r--r--chat/eggdrop/patches/patch-ak13
-rw-r--r--chat/eggdrop/patches/patch-al16
-rw-r--r--chat/eggdrop/patches/patch-src_match.c13
-rw-r--r--chat/eggdrop/patches/patch-src_net.c13
-rw-r--r--chat/eggdrop/patches/patch-src_proto.h13
-rw-r--r--chat/eggdrop/patches/patch-src_tclhash.c13
-rw-r--r--chat/eggdrop/patches/patch-src_tclhash.h13
16 files changed, 0 insertions, 344 deletions
diff --git a/chat/eggdrop/patches/patch-aa b/chat/eggdrop/patches/patch-aa
deleted file mode 100644
index 5632bd06672..00000000000
--- a/chat/eggdrop/patches/patch-aa
+++ /dev/null
@@ -1,41 +0,0 @@
-$NetBSD: patch-aa,v 1.7 2014/02/21 20:18:13 joerg Exp $
-
---- configure.orig 2011-10-26 02:00:10.000000000 +0000
-+++ configure
-@@ -5248,7 +5248,7 @@ $as_echo "#define DLOPEN_1 1" >>confdefs
-
- fi
- ;;
-- *BSD)
-+ *BSD | DragonFly)
- # FreeBSD/OpenBSD/NetBSD all support dlopen() and have had plenty of
- # testing with Eggdrop.
- WEIRD_OS="no"
-@@ -5525,10 +5525,16 @@ $as_echo "#define STOP_UAC 1" >>confdefs
- SHLIB_CC="$CC -PIC"
- fi
- ;;
-- *BSD)
-+ *BSD | DragonFly)
- # FreeBSD/OpenBSD/NetBSD
- SHLIB_CC="$CC -fPIC"
-- SHLIB_LD="ld -Bshareable -x"
-+ if [ `echo __ELF__ | $CC -E - | grep -v '#'` = 1 ]; then
-+ SHLIB_LD="ld -shared -x"
-+ BEL_MOD_LD="$CC -Wl,-E $LDFLAGS"
-+ else
-+ SHLIB_LD="ld -Bshareable -x"
-+ BEL_MOD_LD="$CC $LDFLAGS"
-+ fi
- ;;
- Darwin)
- # Mac OS X
-@@ -6872,7 +6878,7 @@ tclrecommendver="8.5.X"
- tclrecommendsite="ftp://tcl.activestate.com/pub/tcl/tcl8_5/"
-
- # Tcl library filename prefixes, suffixes, and search paths.
--tcllibnames="tcl8.5 tcl85 tcl8.4 tcl84 tcl8.3 tcl83 tcl8.2 tcl82 \
-+tcllibnames="tcl86 tcl8.5 tcl85 tcl8.4 tcl84 tcl8.3 tcl83 tcl8.2 tcl82 \
- tcl8.1 tcl81 tcl8.0 tcl80 tcl tcl7.6 tcl76 tcl7.5 tcl75 \
- tcl7.4 tcl74 tcl7.3 tcl73 tcl7.2 tcl72 tcl7.1 tcl71 \
- tcl7.0 tcl70"
diff --git a/chat/eggdrop/patches/patch-ab b/chat/eggdrop/patches/patch-ab
deleted file mode 100644
index 57de0791bb2..00000000000
--- a/chat/eggdrop/patches/patch-ab
+++ /dev/null
@@ -1,41 +0,0 @@
-$NetBSD: patch-ab,v 1.6 2012/03/31 21:52:57 shattered Exp $
-
---- src/main.c.orig 2011-09-23 20:31:32.000000000 +0000
-+++ src/main.c
-@@ -72,7 +72,7 @@
- # define _POSIX_SOURCE 1 /* Solaris needs this */
- #endif
-
--extern char origbotname[], userfile[], botnetnick[];
-+extern char origbotname[], userfile[], botnetnick[], tempdir[];
- extern int dcc_total, conmask, cache_hit, cache_miss, max_logs, quick_logs,
- quiet_save;
- extern struct dcc_t *dcc;
-@@ -108,7 +108,7 @@ int con_chan = 0; /* Foreground: c
- int term_z = 0; /* Foreground: use the terminal as a partyline? */
- int use_stderr = 1; /* Send stuff to stderr instead of logfiles? */
-
--char configfile[121] = "eggdrop.conf"; /* Default config file name */
-+char configfile[121] = __PKG_SYSCONFDIR__ "/eggdrop.conf"; /* Default config file name */
- char pid_file[120]; /* Name of the pid file */
- char helpdir[121] = "help/"; /* Directory of help files */
- char textdir[121] = "text/"; /* Directory for text files */
-@@ -963,6 +963,8 @@ int main(int arg_c, char **arg_v)
- setrlimit(RLIMIT_CORE, &cdlim);
- #endif
-
-+ chdir(__PREFIX__ "/share/eggdrop");
-+
- #ifdef DEBUG_CONTEXT
- /* Initialise context list */
- for (i = 0; i < 16; i++)
-@@ -1075,7 +1077,8 @@ int main(int arg_c, char **arg_v)
- cache_miss = 0;
- cache_hit = 0;
- if (!pid_file[0])
-- egg_snprintf(pid_file, sizeof pid_file, "pid.%s", botnetnick);
-+ egg_snprintf(pid_file, sizeof pid_file, "%.100s/pid.%.32s",
-+ tempdir, botnetnick);
-
- /* Check for pre-existing eggdrop! */
- f = fopen(pid_file, "r");
diff --git a/chat/eggdrop/patches/patch-ac b/chat/eggdrop/patches/patch-ac
deleted file mode 100644
index 60e2f74cc2a..00000000000
--- a/chat/eggdrop/patches/patch-ac
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-ac,v 1.4 2004/12/03 12:15:54 adam Exp $
-
---- src/Makefile.in.orig 2004-07-25 11:17:34.000000000 +0000
-+++ src/Makefile.in
-@@ -4,6 +4,7 @@
- SHELL = @SHELL@
- top_srcdir = @top_srcdir@
- srcdir = @srcdir@
-+prefix = @prefix@
- VPATH = @srcdir@
-
- @SET_MAKE@
-@@ -16,7 +17,7 @@ CC = @CC@
- LD = @CC@
- STRIP = @STRIP@
- CFLAGS = @CFLAGS@ -I.. -I$(top_srcdir) @DEFS@ $(CFLGS)
--CPPFLAGS = @CPPFLAGS@
-+CPPFLAGS = @CPPFLAGS@ '-D__PREFIX__="@prefix@"' '-D__PKG_SYSCONFDIR__="@sysconfdir@"'
-
- eggdrop_objs = bg.o botcmd.o botmsg.o botnet.o chanprog.o cmds.o dcc.o \
- dccutil.o dns.o flags.o language.o match.o main.o mem.o misc.o misc_file.o \
-@@ -37,7 +38,7 @@ doofus:
- @echo "Linking eggdrop $(EGGBUILD)."
- @echo ""
- @touch mod/mod.xlibs
-- $(LD) -o ../$(EGGEXEC) $(eggdrop_objs) $(MODOBJS) $(XLIBS) md5/md5c.o compat/*.o `cat mod/mod.xlibs`
-+ $(LD) -o ../$(EGGEXEC) $(eggdrop_objs) $(MODOBJS) $(XLDFLAGS) $(XLIBS) md5/md5c.o compat/*.o `cat mod/mod.xlibs`
- $(STRIP) ../$(EGGEXEC)
- @echo ""
- @echo "Successful compile: $(EGGEXEC)"
diff --git a/chat/eggdrop/patches/patch-ad b/chat/eggdrop/patches/patch-ad
deleted file mode 100644
index 01dfdbce13c..00000000000
--- a/chat/eggdrop/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.4 2012/03/31 21:52:57 shattered Exp $
-
---- src/mod/filesys.mod/filesys.c.orig 2011-02-13 14:19:33.000000000 +0000
-+++ src/mod/filesys.mod/filesys.c
-@@ -464,7 +464,7 @@ static int do_dcc_send(int idx, char *di
- if (at_limit(nick)) {
- char xxx[1024];
-
-- sprintf(xxx, "%d*%s%s", (int) strlen(dccdir), dccdir, dir);
-+ sprintf(xxx, "%lu*%s%s", strlen(dccdir), dccdir, dir);
- queue_file(xxx, fn, dcc[idx].nick, nick);
- dprintf(idx, "Queued: %s to %s\n", fn, nick);
- my_free(s);
diff --git a/chat/eggdrop/patches/patch-ae b/chat/eggdrop/patches/patch-ae
deleted file mode 100644
index 294a07464da..00000000000
--- a/chat/eggdrop/patches/patch-ae
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ae,v 1.3 2004/12/03 12:15:54 adam Exp $
-
---- src/mod/ctcp.mod/ctcp.c.orig 2004-06-14 01:14:07.000000000 +0000
-+++ src/mod/ctcp.mod/ctcp.c
-@@ -161,8 +161,8 @@ static int ctcp_CHAT(char *nick, char *u
- /* Do me a favour and don't change this back to a CTCP reply,
- * CTCP replies are NOTICE's this has to be a PRIVMSG
- * -poptix 5/1/1997 */
-- dprintf(DP_SERVER, "PRIVMSG %s :\001DCC CHAT chat %lu %u\001\n",
-- nick, iptolong(natip[0] ? (IP) inet_addr(natip) : getmyip()),
-+ dprintf(DP_SERVER, "PRIVMSG %s :\001DCC CHAT chat %u %u\001\n",
-+ nick, (unsigned)iptolong(natip[0] ? (IP) inet_addr(natip) : getmyip()),
- dcc[i].port);
- return 1;
- }
diff --git a/chat/eggdrop/patches/patch-af b/chat/eggdrop/patches/patch-af
deleted file mode 100644
index 3330fdf37df..00000000000
--- a/chat/eggdrop/patches/patch-af
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-af,v 1.2 2004/12/03 12:15:54 adam Exp $
-
---- src/mod/uptime.mod/uptime.c.orig 2004-06-14 01:14:07.000000000 +0000
-+++ src/mod/uptime.mod/uptime.c
-@@ -35,8 +35,8 @@
-
- #include "uptime.h"
- #include "../module.h"
--#include "../server.mod/server.h"
- #include <netdb.h>
-+#include "../server.mod/server.h"
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <unistd.h>
diff --git a/chat/eggdrop/patches/patch-ag b/chat/eggdrop/patches/patch-ag
deleted file mode 100644
index 980c7fd0e7d..00000000000
--- a/chat/eggdrop/patches/patch-ag
+++ /dev/null
@@ -1,58 +0,0 @@
-$NetBSD: patch-ag,v 1.8 2012/03/31 21:52:57 shattered Exp $
-
---- Makefile.in.orig 2010-03-14 18:21:59.000000000 +0000
-+++ Makefile.in
-@@ -51,7 +51,7 @@ MOD_STRIP = @MOD_STRIP@
-
- # make 'modules'
- SHLIB_CC = @SHLIB_CC@
--SHLIB_LD = @SHLIB_LD@
-+SHLIB_LD = @SHLIB_LD@ $(LINKER_RPATH_FLAG) @TCLLIB@
- SHLIB_STRIP = @SHLIB_STRIP@
- MOD_EXT = @MOD_EXT@
-
-@@ -71,6 +71,7 @@ XREQS = @TCL_REQS@
- # XLIBS will be linked with everything
- # MODULE_XLIBS will only be linked with the module objects
- XLIBS = @TCL_LIBS@ @LIBS@
-+XLDFLAGS = $(COMPILER_RPATH_FLAG)@TCLLIB@
- MODULE_XLIBS = @MODULE_XLIBS@
-
- # You shouldn't need to edit anything below this line.
-@@ -95,30 +96,30 @@ egg_install_msg = echo "" && \
- MAKE_MODEGG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(MOD_CC)' 'LD=$(MOD_LD)' \
- 'STRIP=$(MOD_STRIP)' 'RANLIB=$(RANLIB)' 'CFLGS=$(CFLGS)' \
- 'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \
--'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(standard build)' 'MODOBJS='
-+'XLDFLAGS=$(XLDFLAGS)' 'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(standard build)' 'MODOBJS='
-
- MAKE_MODULES = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(SHLIB_CC)' 'LD=$(SHLIB_LD)' \
--'STRIP=$(SHLIB_STRIP)' 'CFLGS=$(CFLGS)' 'XLIBS=$(XLIBS)' \
-+'STRIP=$(SHLIB_STRIP)' 'CFLGS=$(CFLGS)' 'XLDFLAGS=$(XLDFLAGS)' 'XLIBS=$(XLIBS)' \
- 'MOD_EXT=$(MOD_EXT)' 'MODULE_XLIBS=$(MODULE_XLIBS)'
-
- MAKE_STATIC = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)' 'LD=$(LD)' \
- 'STRIP=$(STRIP)' 'RANLIB=$(RANLIB)' 'CFLGS=$(CFLGS) -DSTATIC' \
- 'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \
--'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(static version)' \
-+'XLDFLAGS=$(XLDFLAGS)' 'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(static version)' \
- 'MODOBJS=mod/*.o'
-
- MAKE_DEBEGG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(MOD_CC)' 'LD=$(MOD_LD)' \
- 'STRIP=touch' 'RANLIB=$(RANLIB)' 'CFLGS=$(DEBCFLGS) $(CFLGS)' \
- 'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \
--'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(debug version)' 'MODOBJS='
-+'XLDFLAGS=$(XLDFLAGS)' 'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(debug version)' 'MODOBJS='
-
- MAKE_DEBMODULES = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(SHLIB_CC)' 'LD=$(SHLIB_LD)' \
--'XLIBS=$(XLIBS)' 'STRIP=touch' 'CFLGS=$(DEBCFLGS) $(CFLGS)' \
-+'XLDFLAGS=$(XLDFLAGS)' 'XLIBS=$(XLIBS)' 'STRIP=touch' 'CFLGS=$(DEBCFLGS) $(CFLGS)' \
- 'MOD_EXT=$(MOD_EXT)' 'MODULE_XLIBS=$(MODULE_XLIBS)'
-
- MAKE_SDEBUG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)' 'LD=$(LD)' \
- 'STRIP=touch' 'RANLIB=$(RANLIB)' 'CFLGS=$(DEBCFLGS) $(CFLGS) -DSTATIC' \
--'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' 'XLIBS=$(XLIBS)' \
-+'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' 'XLDFLAGS=$(XLDFLAGS)' 'XLIBS=$(XLIBS)' \
- 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(static debug version)' 'MODOBJS=mod/*.o'
-
- MAKE_DEPEND = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)'
diff --git a/chat/eggdrop/patches/patch-ah b/chat/eggdrop/patches/patch-ah
deleted file mode 100644
index 288a7991a43..00000000000
--- a/chat/eggdrop/patches/patch-ah
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ah,v 1.2 2004/12/03 12:15:54 adam Exp $
-
---- src/modules.c.orig 2004-07-25 11:17:34.000000000 +0000
-+++ src/modules.c
-@@ -106,7 +106,7 @@ int xtra_unpack();
- static int module_rename(char *name, char *newname);
-
- #ifndef STATIC
--char moddir[121] = "modules/";
-+char moddir[121] = __PREFIX__ "/lib/eggdrop/";
- #endif
-
- #ifdef STATIC
diff --git a/chat/eggdrop/patches/patch-ai b/chat/eggdrop/patches/patch-ai
deleted file mode 100644
index 8d52dac6710..00000000000
--- a/chat/eggdrop/patches/patch-ai
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-ai,v 1.4 2007/10/18 09:15:34 obache Exp $
-
---- src/mod/share.mod/share.c.orig 2006-03-28 02:35:51.000000000 +0000
-+++ src/mod/share.mod/share.c
-@@ -1122,7 +1122,8 @@ static void share_ufsend(int idx, char *
- int i, sock;
- FILE *f;
-
-- egg_snprintf(s, sizeof s, ".share.%s.%li.users", botnetnick, now);
-+ egg_snprintf(s, sizeof s, "%.100s/.share.%.32s.%lu.users",
-+ tempdir, botnetnick, now);
- if (!(b_status(idx) & STAT_SHARE)) {
- dprintf(idx, "s e You didn't ask; you just started sending.\n");
- dprintf(idx, "s e Ask before sending the userfile.\n");
-@@ -1891,8 +1892,8 @@ static void start_sending_users(int idx)
- struct chanuserrec *ch;
- struct chanset_t *cst;
-
-- egg_snprintf(share_file, sizeof share_file, ".share.%s.%lu", dcc[idx].nick,
-- now);
-+ egg_snprintf(share_file, sizeof share_file, "%.100s/.share.%.32s.%lu",
-+ tempdir, dcc[idx].nick, now);
- if (dcc[idx].u.bot->uff_flags & UFF_OVERRIDE) {
- debug1("NOTE: Sharing aggressively with %s, overriding its local bots.",
- dcc[idx].nick);
diff --git a/chat/eggdrop/patches/patch-ak b/chat/eggdrop/patches/patch-ak
deleted file mode 100644
index 629080766ee..00000000000
--- a/chat/eggdrop/patches/patch-ak
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ak,v 1.3 2004/12/03 12:15:54 adam Exp $
-
---- src/eggdrop.h.orig 2004-07-25 11:17:34.000000000 +0000
-+++ src/eggdrop.h
-@@ -75,7 +75,7 @@
-
-
- /* Language stuff */
--#define LANGDIR "./language" /* language file directory */
-+#define LANGDIR __PREFIX__ "/share/eggdrop/language" /* language file directory */
- #define BASELANG "english" /* language which always gets loaded before
- all other languages. You do not want to
- change this. */
diff --git a/chat/eggdrop/patches/patch-al b/chat/eggdrop/patches/patch-al
deleted file mode 100644
index 96294f9e807..00000000000
--- a/chat/eggdrop/patches/patch-al
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-al,v 1.2 2007/10/18 09:15:34 obache Exp $
-
-Fix for http://www.eggheads.org/bugzilla/show_bug.cgi?id=462
-
---- src/mod/irc.mod/chan.c.orig 2006-03-28 02:35:51.000000000 +0000
-+++ src/mod/irc.mod/chan.c
-@@ -2211,7 +2211,8 @@ static int gotmsg(char *from, char *msg)
- return 0; /* Unknown channel; don't process. */
-
- fixcolon(msg);
-- strcpy(uhost, from);
-+ strncpy(uhost, from, UHOSTMAX);
-+ uhost[UHOSTMAX] = '\0';
- nick = splitnick(&uhost);
- ignoring = match_ignore(from);
- /* Only check if flood-ctcp is active */
diff --git a/chat/eggdrop/patches/patch-src_match.c b/chat/eggdrop/patches/patch-src_match.c
deleted file mode 100644
index 56e71ea8e09..00000000000
--- a/chat/eggdrop/patches/patch-src_match.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_match.c,v 1.1 2012/11/16 00:35:28 joerg Exp $
-
---- src/match.c.orig 2012-11-15 10:29:42.000000000 +0000
-+++ src/match.c
-@@ -367,7 +367,7 @@ int cidr_match(char *m, char *n, int cou
- /* Inline for cron_match (obviously).
- * Matches a single field of a crontab expression.
- */
--inline int cron_matchfld(char *mask, int match)
-+static inline int cron_matchfld(char *mask, int match)
- {
- int skip = 0, f, t;
- char *p, *q;
diff --git a/chat/eggdrop/patches/patch-src_net.c b/chat/eggdrop/patches/patch-src_net.c
deleted file mode 100644
index d46308e86e1..00000000000
--- a/chat/eggdrop/patches/patch-src_net.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_net.c,v 1.1 2012/11/16 00:35:28 joerg Exp $
-
---- src/net.c.orig 2012-11-15 10:30:07.000000000 +0000
-+++ src/net.c
-@@ -564,7 +564,7 @@ int open_address_listen(IP addr, int *po
- /* Returns a socket number for a listening socket that will accept any
- * connection -- port # is returned in port
- */
--inline int open_listen(int *port)
-+int open_listen(int *port)
- {
- return open_address_listen(myip[0] ? getmyip() : INADDR_ANY, port);
- }
diff --git a/chat/eggdrop/patches/patch-src_proto.h b/chat/eggdrop/patches/patch-src_proto.h
deleted file mode 100644
index 893d532a7d8..00000000000
--- a/chat/eggdrop/patches/patch-src_proto.h
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_proto.h,v 1.1 2012/11/16 00:35:28 joerg Exp $
-
---- src/proto.h.orig 2012-11-15 10:30:20.000000000 +0000
-+++ src/proto.h
-@@ -271,7 +271,7 @@ int getsock(int);
- void killsock(int);
- void killtclsock(int);
- int answer(int, char *, unsigned long *, unsigned short *, int);
--inline int open_listen(int *);
-+int open_listen(int *);
- int open_address_listen(IP addr, int *);
- int open_telnet(char *, int);
- int open_telnet_dcc(int, char *, char *);
diff --git a/chat/eggdrop/patches/patch-src_tclhash.c b/chat/eggdrop/patches/patch-src_tclhash.c
deleted file mode 100644
index 69fc2eea7a3..00000000000
--- a/chat/eggdrop/patches/patch-src_tclhash.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_tclhash.c,v 1.1 2012/11/16 00:35:28 joerg Exp $
-
---- src/tclhash.c.orig 2012-11-15 10:32:40.000000000 +0000
-+++ src/tclhash.c
-@@ -109,7 +109,7 @@ static inline void tcl_bind_list_delete(
- nfree(tl);
- }
-
--inline void garbage_collect_tclhash(void)
-+void garbage_collect_tclhash(void)
- {
- tcl_bind_list_t *tl, *tl_next, *tl_prev;
- tcl_bind_mask_t *tm, *tm_next, *tm_prev;
diff --git a/chat/eggdrop/patches/patch-src_tclhash.h b/chat/eggdrop/patches/patch-src_tclhash.h
deleted file mode 100644
index d03481152d3..00000000000
--- a/chat/eggdrop/patches/patch-src_tclhash.h
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_tclhash.h,v 1.1 2012/11/16 00:35:28 joerg Exp $
-
---- src/tclhash.h.orig 2012-11-15 10:32:27.000000000 +0000
-+++ src/tclhash.h
-@@ -75,7 +75,7 @@ typedef struct tcl_bind_list_b {
-
- #ifndef MAKING_MODS
-
--inline void garbage_collect_tclhash(void);
-+void garbage_collect_tclhash(void);
-
- void init_bind(void);
- void kill_bind(void);