aboutsummaryrefslogtreecommitdiffstats
path: root/irc/party/files
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2011-05-02 16:36:53 +0800
committerbapt <bapt@FreeBSD.org>2011-05-02 16:36:53 +0800
commitdaf79642227eb7b4a3d9a3be55a1bf669fb6c925 (patch)
tree7ab128cc65a704d6e481d697a65787cb14afdd54 /irc/party/files
parent47c97fcece7c1350934875ba259c9947255b4157 (diff)
downloadfreebsd-ports-gnome-daf79642227eb7b4a3d9a3be55a1bf669fb6c925.tar.gz
freebsd-ports-gnome-daf79642227eb7b4a3d9a3be55a1bf669fb6c925.tar.zst
freebsd-ports-gnome-daf79642227eb7b4a3d9a3be55a1bf669fb6c925.zip
Remove unmaintained expired ports from irc
2011-05-01 irc/garnaxfs: Upstream disapear and distfile is no more available 2011-05-01 irc/party: Upstream disapear and distfile is no more available
Diffstat (limited to 'irc/party/files')
-rw-r--r--irc/party/files/patch-party.c64
-rw-r--r--irc/party/files/patch-party.h20
2 files changed, 0 insertions, 84 deletions
diff --git a/irc/party/files/patch-party.c b/irc/party/files/patch-party.c
deleted file mode 100644
index 2d9d5a5cfa03..000000000000
--- a/irc/party/files/patch-party.c
+++ /dev/null
@@ -1,64 +0,0 @@
---- party.c.orig Wed Oct 15 18:28:00 2003
-+++ party.c Wed Oct 15 18:32:29 2003
-@@ -82,7 +82,7 @@
- #include <errno.h>
- #include <ctype.h>
- #ifdef VAR_ARGS
--#include <varargs.h>
-+#include <stdarg.h>
- #endif /*VAR_ARGS*/
-
- char *version= "2.12"; /* current party version */
-@@ -787,23 +787,21 @@
- #endif /*BSD*/
-
- #ifdef VAR_ARGS
--vint db(va_alist)
--va_dcl
-+vint db(char *msg, ...)
- {
- va_list ap;
--char *msg;
- long now;
-
- if (debug)
- {
-- va_start(ap);
-- msg= va_arg(ap, char *);
-+ va_start(ap, msg);
-
- now= time((long *)0);
- fprintf(debug,"%8.8s: ",ctime(&now)+11);
- vfprintf(debug,msg,ap);
- fflush(debug);
- }
-+ va_end(ap);
- }
- #else
- vint db(msg,arg1,arg2,arg3,arg4)
-@@ -823,15 +821,12 @@
-
-
- #ifdef VAR_ARGS
--vint err(va_alist)
--va_dcl
-+vint err(char *msg, ...)
- {
- va_list ap;
--char *msg;
- long now;
-
-- va_start(ap);
-- msg= va_arg(ap, char *);
-+ va_start(ap, msg);
- fprintf(stderr,"%s error: ",progname);
- vfprintf(stderr,msg,ap);
-
-@@ -843,6 +838,7 @@
- vfprintf(debug,msg,ap);
- fflush(debug);
- }
-+ va_end(ap);
- }
- #else
- vint err(msg,arg1,arg2,arg3,arg4)
diff --git a/irc/party/files/patch-party.h b/irc/party/files/patch-party.h
deleted file mode 100644
index 82a3d5f0ada8..000000000000
--- a/irc/party/files/patch-party.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- party.h.orig Wed Oct 15 18:31:34 2003
-+++ party.h Wed Oct 15 18:31:58 2003
-@@ -225,7 +225,7 @@
-
- #ifdef BSD
- #define L_FLOCK /* Use flock() to lock files */
--#if defined(bsdi) || defined(linux)
-+#if defined(bsdi) || defined(linux) || defined(__FreeBSD__)
- #define F_TERMIOS /* Use tcsetattr() to set modes */
- #else
- #define F_STTY /* Use stty() to set modes */
-@@ -464,7 +464,7 @@
- #ifdef BSD
- int susp();
- #endif /*BSD*/
--vint err(), db();
-+vint err(char *, ...), db(char *, ...);
- char *getlogin(), *malloc(), *ctime(), *fgets(), *getenv();
- char *chn_file_name(), *getline();
- char *strchr(), *strpbrk(), *strrchr(), *strstr();