View | Details | Raw Unified | Return to bug 175746
Collapse All | Expand All

(-)Makefile (-5 / +2 lines)
Lines 1-12 Link Here
1
# New ports collection makefile for:	eggdrop
1
# Created by: Ulrich Spoerlein <q@uni.de>
2
# Date created:				18.01.2003
3
# Whom:						Ulrich Spoerlein <q@uni.de>
4
#
5
# $FreeBSD$
2
# $FreeBSD$
6
#
7
3
8
PORTNAME=	eggdrop
4
PORTNAME=	eggdrop
9
PORTVERSION=	1.6.21
5
PORTVERSION=	1.6.21
6
PORTREVISION=	1
10
CATEGORIES=	irc
7
CATEGORIES=	irc
11
MASTER_SITES=	ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/
8
MASTER_SITES=	ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/
12
DISTNAME=	${PORTNAME}${PORTVERSION}
9
DISTNAME=	${PORTNAME}${PORTVERSION}
(-)files/patch-src_match.c (+13 lines)
Line 0 Link Here
1
$NetBSD: patch-src_match.c,v 1.1 2012/11/16 00:35:28 joerg Exp $
2
3
--- src/match.c.orig	2012-11-15 10:29:42.000000000 +0000
4
+++ src/match.c
5
@@ -367,7 +367,7 @@ int cidr_match(char *m, char *n, int cou
6
 /* Inline for cron_match (obviously).
7
  * Matches a single field of a crontab expression.
8
  */
9
-inline int cron_matchfld(char *mask, int match)
10
+static inline int cron_matchfld(char *mask, int match)
11
 {
12
   int skip = 0, f, t;
13
   char *p, *q;
(-)files/patch-src_net.c (+13 lines)
Line 0 Link Here
1
$NetBSD: patch-src_net.c,v 1.1 2012/11/16 00:35:28 joerg Exp $
2
3
--- src/net.c.orig	2012-11-15 10:30:07.000000000 +0000
4
+++ src/net.c
5
@@ -564,7 +564,7 @@ int open_address_listen(IP addr, int *po
6
 /* Returns a socket number for a listening socket that will accept any
7
  * connection -- port # is returned in port
8
  */
9
-inline int open_listen(int *port)
10
+int open_listen(int *port)
11
 {
12
   return open_address_listen(myip[0] ? getmyip() : INADDR_ANY, port);
13
 }
(-)files/patch-src_proto.h (+13 lines)
Line 0 Link Here
1
$NetBSD: patch-src_proto.h,v 1.1 2012/11/16 00:35:28 joerg Exp $
2
3
--- src/proto.h.orig	2012-11-15 10:30:20.000000000 +0000
4
+++ src/proto.h
5
@@ -271,7 +271,7 @@ int getsock(int);
6
 void killsock(int);
7
 void killtclsock(int);
8
 int answer(int, char *, unsigned long *, unsigned short *, int);
9
-inline int open_listen(int *);
10
+int open_listen(int *);
11
 int open_address_listen(IP addr, int *);
12
 int open_telnet(char *, int);
13
 int open_telnet_dcc(int, char *, char *);
(-)files/patch-src_tclhash.c (+13 lines)
Line 0 Link Here
1
$NetBSD: patch-src_tclhash.c,v 1.1 2012/11/16 00:35:28 joerg Exp $
2
3
--- src/tclhash.c.orig	2012-11-15 10:32:40.000000000 +0000
4
+++ src/tclhash.c
5
@@ -109,7 +109,7 @@ static inline void tcl_bind_list_delete(
6
   nfree(tl);
7
 }
8
 
9
-inline void garbage_collect_tclhash(void)
10
+void garbage_collect_tclhash(void)
11
 {
12
   tcl_bind_list_t *tl, *tl_next, *tl_prev;
13
   tcl_bind_mask_t *tm, *tm_next, *tm_prev;
(-)files/patch-src_tclhash.h (+13 lines)
Line 0 Link Here
1
$NetBSD: patch-src_tclhash.h,v 1.1 2012/11/16 00:35:28 joerg Exp $
2
3
--- src/tclhash.h.orig	2012-11-15 10:32:27.000000000 +0000
4
+++ src/tclhash.h
5
@@ -75,7 +75,7 @@ typedef struct tcl_bind_list_b {
6
 
7
 #ifndef MAKING_MODS
8
 
9
-inline void garbage_collect_tclhash(void);
10
+void garbage_collect_tclhash(void);
11
 
12
 void init_bind(void);
13
 void kill_bind(void);

Return to bug 175746