summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2004-09-05 17:03:48 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2004-09-05 17:03:48 +0000
commit04f3b679c652318dbbf53791801494cce09cac43 (patch)
tree9ab29a61218ec66d4e9365be6f860baf13b37c1d /games-mud/mcl/files
parentfixed typo (diff)
downloadgentoo-2-04f3b679c652318dbbf53791801494cce09cac43.tar.gz
gentoo-2-04f3b679c652318dbbf53791801494cce09cac43.tar.bz2
gentoo-2-04f3b679c652318dbbf53791801494cce09cac43.zip
Closing #58661
Diffstat (limited to 'games-mud/mcl/files')
-rw-r--r--games-mud/mcl/files/mcl-0.53.00-gcc34.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/games-mud/mcl/files/mcl-0.53.00-gcc34.patch b/games-mud/mcl/files/mcl-0.53.00-gcc34.patch
new file mode 100644
index 000000000000..f25d9c4eb925
--- /dev/null
+++ b/games-mud/mcl/files/mcl-0.53.00-gcc34.patch
@@ -0,0 +1,12 @@
+esdiff -ru mcl-0.53.00/InputLine.cc mcl-0.53.00.new/InputLine.cc
+--- mcl-0.53.00/InputLine.cc 2003-09-29 12:37:49.000000000 +0200
++++ mcl-0.53.00.new/InputLine.cc 2004-07-28 16:40:13.025986752 +0200
+@@ -27,7 +27,7 @@
+
+ History::History(int _id) : id (_id), current(0) {
+ max_history = config->getOption(opt_histsize);
+- strings = new (char*)[max_history];
++ strings = new char*[max_history];
+ timestamps = new time_t[max_history];
+
+ // Hmm, not sure about this