head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.40 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.38 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.36 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.34 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.32 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.30 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.28 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.26 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.24 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.22 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.20 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.18 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.16 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.14 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.12 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.3.0.10 pkgsrc-2006Q3-base:1.3 pkgsrc-2006Q2:1.3.0.8 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.6 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.3.0.4 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.2 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.2.0.4 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.2; locks; strict; comment @# @; 1.3 date 2005.08.22.15.35.37; author adam; state dead; branches; next 1.2; 1.2 date 2005.05.06.00.03.25; author salo; state Exp; branches 1.2.2.1; next 1.1; 1.1 date 2005.04.20.00.58.08; author heinz; state Exp; branches; next ; 1.2.2.1 date 2005.05.06.00.03.25; author salo; state dead; branches; next 1.2.2.2; 1.2.2.2 date 2005.05.06.00.30.17; author salo; state Exp; branches; next ; desc @@ 1.3 log @Changes 0.92: * Added Spanish translation * Fixed bug: ice is now working * A few smaller bug fixes Changes 0.91: * Fixed stupid bugs in Enigma 0.90 * Two new levels Changes 0.90: * New levels * Support for 800x600 and 1024x768 video modes * Support for non-English languages * Vastly improved Oxyd 1 and Per.Oxyd compatibility * Redesigned options menu * Countless smaller enhancements @ text @$NetBSD: patch-ak,v 1.2 2005/05/06 00:03:25 salo Exp $ --- src/px/alist.hh 2003-01-12 20:32:43.000000000 +0100 +++ src/px/alist.hh 2004-11-11 00:04:26.855388248 +0100 @@@@ -43,7 +43,7 @@@@ // Lookup of keys // iterator find (const key_type &key) { - iterator i=begin(), e=end(); + iterator i=this->begin(), e=this->end(); for (; i!=e; ++i) if (i->first == key) break; @@@@ -51,7 +51,7 @@@@ } const_iterator find (const key_type &key) const { - const_iterator i=begin(), e=end(); + const_iterator i=this->begin(), e=this->end(); for (; i!=e; ++i) if (i->first == key) break; @@@@ -60,8 +60,8 @@@@ VAL &operator[] (const key_type &key) { iterator i=find(key); - if (i==end()) - i=insert(end(), make_pair(key, VAL())); + if (i==this->end()) + i=insert(this->end(), make_pair(key, VAL())); return i->second; } }; @ 1.2 log @Add RCSIDs, remove diff command line. (hi heinz!) @ text @d1 1 a1 1 $NetBSD$ @ 1.2.2.1 log @file patch-ak was added on branch pkgsrc-2005Q1 on 2005-05-06 00:03:25 +0000 @ text @d1 33 @ 1.2.2.2 log @Pullup ticket 472 - requested by Klaus Heinz gcc fixes for enigma Revisions pulled up: - pkgsrc/games/enigma/Makefile 1.9 - pkgsrc/games/enigma/distinfo 1.3-1.4 - pkgsrc/games/enigma/patches/patch-aj 1.1-1.2 - pkgsrc/games/enigma/patches/patch-ak 1.1-1.2 - pkgsrc/games/enigma/patches/patch-al 1.1-1.2 - pkgsrc/games/enigma/patches/patch-am 1.1-1.2 - pkgsrc/games/enigma/patches/patch-an 1.1-1.2 Module Name: pkgsrc Committed By: heinz Date: Wed Apr 20 00:58:08 UTC 2005 Modified Files: pkgsrc/games/enigma: Makefile distinfo Added Files: pkgsrc/games/enigma/patches: patch-aj patch-ak patch-al patch-am patch-an Log Message: Applied patches found at http://bugzilla.fedora.us/attachment.cgi?id=3D919&action=3Dview as patch-aj .. patch-an in order to fix PR pkg/29385. Patch-am was changed slightly: a white-space-only change was omitted and the comments from two "friend" declarations were removed in order to not break support for gcc 2.95. --- Module Name: pkgsrc Committed By: salo Date: Fri May 6 00:03:25 UTC 2005 Modified Files: pkgsrc/games/enigma: distinfo pkgsrc/games/enigma/patches: patch-aj patch-ak patch-al patch-am patch-an Log Message: Add RCSIDs, remove diff command line. (hi heinz!) @ text @a0 33 $NetBSD: patch-ak,v 1.2.2.1 2005/05/06 00:30:17 salo Exp $ --- src/px/alist.hh 2003-01-12 20:32:43.000000000 +0100 +++ src/px/alist.hh 2004-11-11 00:04:26.855388248 +0100 @@@@ -43,7 +43,7 @@@@ // Lookup of keys // iterator find (const key_type &key) { - iterator i=begin(), e=end(); + iterator i=this->begin(), e=this->end(); for (; i!=e; ++i) if (i->first == key) break; @@@@ -51,7 +51,7 @@@@ } const_iterator find (const key_type &key) const { - const_iterator i=begin(), e=end(); + const_iterator i=this->begin(), e=this->end(); for (; i!=e; ++i) if (i->first == key) break; @@@@ -60,8 +60,8 @@@@ VAL &operator[] (const key_type &key) { iterator i=find(key); - if (i==end()) - i=insert(end(), make_pair(key, VAL())); + if (i==this->end()) + i=insert(this->end(), make_pair(key, VAL())); return i->second; } }; @ 1.1 log @Applied patches found at http://bugzilla.fedora.us/attachment.cgi?id=919&action=view as patch-aj .. patch-an in order to fix PR pkg/29385. Patch-am was changed slightly: a white-space-only change was omitted and the comments from two "friend" declarations were removed in order to not break support for gcc 2.95. @ text @d1 2 a2 1 diff -Nur enigma-0.81-orig/src/px/alist.hh enigma-0.81/src/px/alist.hh @