Return-Path: X-Flags: 0000 Delivered-To: GMX delivery to grumbel@gmx.de Received: (qmail 25563 invoked by uid 0); 12 Apr 1999 19:29:49 -0000 Received: from stampede.varesearch.com (HELO whiplash.stampede.org) (209.81.8.249) by mx3.gmx.net with SMTP; 12 Apr 1999 19:29:49 -0000 Received: from stampede.org (mwh@ip248.abnxr4.ras.tele.dk [195.249.115.248]) by whiplash.stampede.org (8.9.1a/8.8.7) with ESMTP id LAA20986 for ; Mon, 12 Apr 1999 11:31:09 -0700 Sender: mwh@stampede.org Message-ID: <37124950.30439AA3@stampede.org> Date: Mon, 12 Apr 1999 19:28:16 +0000 From: Martin Willemoes Hansen X-Mailer: Mozilla 4.51 [en] (X11; I; Linux 2.2.3 i586) X-Accept-Language: en MIME-Version: 1.0 To: grumbel@gmx.de Subject: [Pingus] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-UIDL: 7c9f3a9f469a157a706d32a2bb2f5f33 Hi! I finaly got pingus compiled :-) Wow it is realy nice, love when the penguins die *grin* *pop* hehe Cant wait to version 1.0! One suggestion for you, its about the install. Make it look for libs etc in the prefixes /usr/X11R6 and /usr .. that way lot more ppl will have a better time getting it to work out of the box. Thanx for a nice game! Best regards Martin Willemoes Hansen ------------------------------------------------------------------------- / / (_)__ __ ____ __ | E-Mail mwh@stampede.org / /__/ / _ \/ // /\ \/ / | IRC MWH or DR_NICK /____/_/_//_/\_,_/ /_/\_\ | ICQ 11597690 ------------------------------------------------------------------------- -- End -- Return-Path: X-Flags: 0000 Delivered-To: GMX delivery to grumbel@gmx.de Received: (qmail 16506 invoked by uid 0); 12 Apr 1999 01:26:34 -0000 Received: from dark.x.dtu.dk (130.225.92.246) by mx1.gmx.net with SMTP; 12 Apr 1999 01:26:34 -0000 Received: (qmail 18601 invoked by uid 506); 12 Apr 1999 01:26:33 -0000 Date: Mon, 12 Apr 1999 03:26:33 +0200 From: Magnus Norddahl To: Ingo Ruhnke Cc: pingus-devel@lists.deus.net Subject: Re: Pingus 0.0.11 Message-ID: <19990412032633.A18225@dark.x.dtu.dk> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=2fHTh5uZTiUOsy+g X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Ingo Ruhnke on Sun, Apr 11, 1999 at 08:29:14PM +0000 X-UIDL: a71fbf3cc4939f602c262f039a84186a --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Quoting Ingo Ruhnke (grumbel@gmx.de): > just released pingus 0.0.11. This version doesn't have much new features just > some bugfixes and now animation which run at a constant speed (a little bit > slow, but I change that later). Nice work. If you want be to help you (by coding something), just let me know what. I've attached a small patch. It'll make pingus catch exceptions thrown by ClanLib (0.1.15 or newer). In this way, pingus actually writes an error message, if it cannot locate the script/data files. -- Magnus Norddahl ClanSoft --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=pingus_error_patch --- pingus_org.cc Mon Apr 12 03:16:27 1999 +++ pingus.cc Mon Apr 12 03:16:45 1999 @@ -264,13 +264,19 @@ { Result result; - init(argc, argv); - intro(); - result = play_level(levelfile); + try { + init(argc, argv); + intro(); + result = play_level(levelfile); - cout << "Pingus exit normaly" << endl; + cout << "Pingus exit normaly" << endl; + result.print(); + } + catch (CL_Error err) + { + cout << "Error caught from ClanLib: " << err.message << endl; + } - result.print(); return 0; } --2fHTh5uZTiUOsy+g-- -- End -- Return-Path: X-Flags: 0000 Delivered-To: GMX delivery to grumbel@gmx.de Received: (qmail 14923 invoked by uid 0); 12 Apr 1999 01:27:02 -0000 Received: from blueberry.jellybean.co.uk (194.88.75.31) by mx2.gmx.net with SMTP; 12 Apr 1999 01:27:02 -0000 Received: from list by blueberry.jellybean.co.uk with local (Exim 2.05 #1 (Debian)) id 10WVWk-0002lL-00; Mon, 12 Apr 1999 02:28:42 +0100 Date: Mon, 12 Apr 1999 03:26:33 +0200 From: Magnus Norddahl To: Ingo Ruhnke Cc: pingus-devel@lists.deus.net Subject: Re: Pingus 0.0.11 Message-ID: <19990412032633.A18225@dark.x.dtu.dk> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=2fHTh5uZTiUOsy+g X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Ingo Ruhnke on Sun, Apr 11, 1999 at 08:29:14PM +0000 Resent-Message-ID: <"4FA4_B.A.8lC.JxUE3"@blueberry.jellybean.co.uk> Resent-From: pingus-devel@lists.deus.net Reply-To: pingus-devel@lists.deus.net X-Mailing-List: archive/latest/106 X-Loop: pingus-devel@lists.deus.net Precedence: list Resent-Sender: pingus-devel-request@lists.deus.net Resent-Date: Mon, 12 Apr 1999 02:28:42 +0100 X-UIDL: aeab825d786531e8970bb6215f36fd67 --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Quoting Ingo Ruhnke (grumbel@gmx.de): > just released pingus 0.0.11. This version doesn't have much new features just > some bugfixes and now animation which run at a constant speed (a little bit > slow, but I change that later). Nice work. If you want be to help you (by coding something), just let me know what. I've attached a small patch. It'll make pingus catch exceptions thrown by ClanLib (0.1.15 or newer). In this way, pingus actually writes an error message, if it cannot locate the script/data files. -- Magnus Norddahl ClanSoft --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=pingus_error_patch --- pingus_org.cc Mon Apr 12 03:16:27 1999 +++ pingus.cc Mon Apr 12 03:16:45 1999 @@ -264,13 +264,19 @@ { Result result; - init(argc, argv); - intro(); - result = play_level(levelfile); + try { + init(argc, argv); + intro(); + result = play_level(levelfile); - cout << "Pingus exit normaly" << endl; + cout << "Pingus exit normaly" << endl; + result.print(); + } + catch (CL_Error err) + { + cout << "Error caught from ClanLib: " << err.message << endl; + } - result.print(); return 0; } --2fHTh5uZTiUOsy+g-- -- End -- Return-Path: X-Flags: 0000 Delivered-To: GMX delivery to grumbel@gmx.de Received: (qmail 24651 invoked by uid 0); 11 Apr 1999 20:04:49 -0000 Received: from smtp4.mindspring.com (207.69.200.64) by mx2.gmx.net with SMTP; 11 Apr 1999 20:04:49 -0000 Received: from mindspring.com (pool-209-138-62-60.dlls.grid.net [209.138.62.60]) by smtp4.mindspring.com (8.8.5/8.8.5) with ESMTP id QAA28984 for ; Sun, 11 Apr 1999 16:04:47 -0400 (EDT) Sender: renoy@mindspring.com Message-ID: <37110108.6C08715E@mindspring.com> Date: Sun, 11 Apr 1999 20:07:36 +0000 From: Renoy Sam X-Mailer: Mozilla 4.04 [en] (X11; I; Linux 2.0.36 i686) MIME-Version: 1.0 To: grumbel@gmx.de Subject: Re: error installing pingus References: <199904111051.rh1dnk.7mc.37kbi17@mx9.mindspring.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-UIDL: bb0b36dc3e2e47438f5c5d40123f7d7c Hi, > > walker.cc:18: iostream: No such file or directory > ^^^^^^^^^ > Looks like you version of g++ and libstc++ are to old, which versions are you > using. I am using gcc and g++ version 2.7.2.3 ( i had upgraded this recently to install kde) > > > checking for main in -lX11... no > > checking for main in -lXext... no > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > looks like some X libs are missing, but that should have nothing to do with the > above error. > do you know where i can get them? > Easiest way to get around this at the moment is to try the binary release and > if that won't work, wait for the next binary release, it should come next week. ok, thanks, i don't remember seeing a binary version of pingus. but i shall look at the site pointed in your mail. thanks, -renoy -- End --