From mboxrd@z Thu Jan 1 00:00:00 1970 From: Reinhard Karcher Subject: Re: Problems while compiling dosemu-1.1.4-3 Date: Mon, 13 Jan 2003 08:34:00 +0100 Sender: linux-msdos-owner@vger.kernel.org Message-ID: <20030113073400.GA1000@Amis.berlin.frey> References: <20030113081246.47115f26.pforst@firemail.de> Mime-Version: 1.0 Return-path: Content-Disposition: inline In-Reply-To: <20030113081246.47115f26.pforst@firemail.de> List-Id: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Peter Forst On Mon, Jan 13, 2003 at 08:12:46AM +0100, Peter Forst wrote > I`ve got an problem, while compiling the dosemu 1.1.4 with patchset1.1.4-3 > > mouse.c: In function `mouse_post_boot': > mouse.c:1924: parse error before `unsigned' > mouse.c:1931: `ptr' undeclared (first use in this function) It's a known problem. Move "*us ptr;* above the preceding statement. The construct using a declaration after an executable statement is a C99 construct. If you don't use a C99 compliant compiler, you get this error. Reinhard