summaryrefslogtreecommitdiff
path: root/irc/bobot++/files
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2003-05-02 03:58:31 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2003-05-02 03:58:31 +0000
commit7b6353c912b6f548ee3f9bb45e7aff9089a1e8a8 (patch)
treed5128e14e8d066d3f1f83bcb958951c24ef7ed7e /irc/bobot++/files
parentNew port freenet version 0.5.2.r1: peer-to-peer network aiming at (diff)
upgrade to 1.99.2
Notes
Notes: svn path=/head/; revision=79985
Diffstat (limited to 'irc/bobot++/files')
-rw-r--r--irc/bobot++/files/patch-configure13
-rw-r--r--irc/bobot++/files/patch-source::ChannelList.C11
-rw-r--r--irc/bobot++/files/patch-source::Makefile.in13
-rw-r--r--irc/bobot++/files/patch-source::ServerList.C11
-rw-r--r--irc/bobot++/files/patch-source::TodoList.H11
5 files changed, 0 insertions, 59 deletions
diff --git a/irc/bobot++/files/patch-configure b/irc/bobot++/files/patch-configure
deleted file mode 100644
index 7c736fac64c7..000000000000
--- a/irc/bobot++/files/patch-configure
+++ /dev/null
@@ -1,13 +0,0 @@
---- configure.orig Fri Sep 7 21:52:05 2001
-+++ configure Fri Sep 7 21:53:18 2001
-@@ -545,8 +545,8 @@
- enableval="$enable_script"
-
- if test $enableval = "yes"; then
-- GUILE_DEFINES="-DUSESCRIPTS -DMULTITHREAD"
-- GUILE_LIBS="-lguile"
-+ GUILE_DEFINES="-DUSESCRIPTS -DMULTITHREAD `%%GUILE_CONFIG%% compile` %%PTHREAD_CFLAGS%%"
-+ GUILE_LIBS="-lguile `%%GUILE_CONFIG%% link` %%PTHREAD_LIBS%%"
- GUILE_SOURCES="BotInterp.C Interp.C ScriptCommands.C"
- GUILE_INCLUDES="BotInterp.H Interp.H ScriptCommands.H"
- fi
diff --git a/irc/bobot++/files/patch-source::ChannelList.C b/irc/bobot++/files/patch-source::ChannelList.C
deleted file mode 100644
index b472aaecb8d9..000000000000
--- a/irc/bobot++/files/patch-source::ChannelList.C
+++ /dev/null
@@ -1,11 +0,0 @@
---- source/ChannelList.C.orig Sat Nov 23 21:40:56 2002
-+++ source/ChannelList.C Sat Nov 23 21:41:04 2002
-@@ -41,7 +41,7 @@
- }
-
- void
--ChannelList::addChannel(ServerConnection *cnx, String name, String wantedModes = "")
-+ChannelList::addChannel(ServerConnection *cnx, String name, String wantedModes)
- {
- name = name.toLower();
- list[name] = new Channel(cnx, name, wantedModes);
diff --git a/irc/bobot++/files/patch-source::Makefile.in b/irc/bobot++/files/patch-source::Makefile.in
deleted file mode 100644
index ff59337842f5..000000000000
--- a/irc/bobot++/files/patch-source::Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
---- source/Makefile.in.orig Fri Sep 7 21:53:43 2001
-+++ source/Makefile.in Fri Sep 7 21:53:51 2001
-@@ -4,8 +4,8 @@
- DEFINES=@HAVE_STL_CLEAR@ @DISABLE_CRYPT@ @GUILE_DEFINES@ @TSERVER_DEFINES@
-
- RM=rm -f
--CXX=@CXX@ -g
--CXXFLAGS=$(DEFINES)
-+CXX=@CXX@
-+CXXFLAGS+=$(DEFINES)
- LDFLAGS=@LDFLAGS@ @GUILE_LIBS@
-
- SOURCES=BanEntry.C \
diff --git a/irc/bobot++/files/patch-source::ServerList.C b/irc/bobot++/files/patch-source::ServerList.C
deleted file mode 100644
index d710d24d1e83..000000000000
--- a/irc/bobot++/files/patch-source::ServerList.C
+++ /dev/null
@@ -1,11 +0,0 @@
---- source/ServerList.C.orig Sat Nov 23 21:47:22 2002
-+++ source/ServerList.C Sat Nov 23 21:47:47 2002
-@@ -40,7 +40,7 @@
- void
- ServerList::delServer(int n)
- {
-- v.erase(&v[n]);
-+ v.erase(v.begin() + n);
- }
-
- Server *
diff --git a/irc/bobot++/files/patch-source::TodoList.H b/irc/bobot++/files/patch-source::TodoList.H
deleted file mode 100644
index a462a4df9a2d..000000000000
--- a/irc/bobot++/files/patch-source::TodoList.H
+++ /dev/null
@@ -1,11 +0,0 @@
---- source/TodoList.H.orig Sat Nov 23 21:55:46 2002
-+++ source/TodoList.H Sat Nov 23 22:07:57 2002
-@@ -23,6 +23,8 @@
-
- #include "String.H"
-
-+using namespace std;
-+
- class TodoList;
-
- class TodoListItem {