From b5e668300f4cee973ccff3d3ddf4a982c7e14b89 Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 21 Jan 1999 11:54:35 +0000 Subject: [PATCH] * renamed mouse->msmouse to resolve conflict with the api mouse unit --- rtl/go32v2/Makefile | 13 ++++++---- rtl/go32v2/{mouse.pp => msmouse.pp} | 40 +++++------------------------ 2 files changed, 14 insertions(+), 39 deletions(-) rename rtl/go32v2/{mouse.pp => msmouse.pp} (90%) diff --git a/rtl/go32v2/Makefile b/rtl/go32v2/Makefile index 17b7f90aac..a8fa154c41 100644 --- a/rtl/go32v2/Makefile +++ b/rtl/go32v2/Makefile @@ -79,8 +79,8 @@ SYSTEMPPU=system$(PPUEXT) OBJECTS=strings go32 initc \ dpmiexcp profile dxeload emu387 \ dos crt objects printer \ - objpas sysutils typinfo math \ - cpu mmx mouse getopts heaptrc graph + objpas sysutils \ + cpu mmx msmouse getopts heaptrc graph LOADERS=prt0 exceptn fpu @@ -213,8 +213,8 @@ cpu$(PPUEXT) : $(PROCINC)/cpu.pp $(SYSTEMPPU) mmx$(PPUEXT) : $(PROCINC)/mmx.pp cpu$(PPUEXT) $(SYSTEMPPU) $(COMPILER) $(PROCINC)/mmx.pp $(REDIR) -mouse$(PPUEXT) : mouse.pp $(SYSTEMPPU) - $(COMPILER) mouse.pp $(REDIR) +msmouse$(PPUEXT) : msmouse.pp $(SYSTEMPPU) + $(COMPILER) msmouse.pp $(REDIR) getopts$(PPUEXT) : $(INC)/getopts.pp $(SYSTEMPPU) $(COMPILER) $(INC)/getopts.pp $(REDIR) @@ -260,7 +260,10 @@ include $(CFG)/makefile.def # # $Log$ -# Revision 1.4 1999-01-15 11:47:16 peter +# Revision 1.5 1999-01-21 11:54:35 peter +# * renamed mouse->msmouse to resolve conflict with the api mouse unit +# +# Revision 1.4 1999/01/15 11:47:16 peter # + added math unit to objects # # Revision 1.3 1998/12/28 23:37:39 peter diff --git a/rtl/go32v2/mouse.pp b/rtl/go32v2/msmouse.pp similarity index 90% rename from rtl/go32v2/mouse.pp rename to rtl/go32v2/msmouse.pp index 0b817126f5..28c35b8332 100644 --- a/rtl/go32v2/mouse.pp +++ b/rtl/go32v2/msmouse.pp @@ -3,6 +3,8 @@ This file is part of the Free Pascal run time library. Copyright (c) 1993,97 by the Free Pascal development team + Mouse unit for microsoft mouse compatible drivers + See the file COPYING.FPC, included in this distribution, for details about the copyright. @@ -12,7 +14,7 @@ ********************************************************************** } -Unit Mouse; +Unit MSMouse; Interface { @@ -102,7 +104,7 @@ Var Implementation -{$I386_ATT} +{$asmmode ATT} Function InitMouse: Boolean; begin @@ -389,37 +391,7 @@ Begin End. { $Log$ - Revision 1.1 1998-12-21 13:07:03 peter - * use -FE + Revision 1.1 1999-01-21 11:54:37 peter + * renamed mouse->msmouse to resolve conflict with the api mouse unit - Revision 1.5 1998/07/15 16:10:35 jonas - * new mouse uni - - Revision 1.3 1998/04/05 13:56:54 peter - - fixed mouse to compile with $i386_att - + linux crt supports redirecting (not Esc-codes anymore) - - Revision 1.2 1998/03/26 12:25:22 peter - * integrated both mouse units - - Revision 1.1.1.1 1998/03/25 11:18:41 root - * Restored version - - Revision 1.4 1998/03/24 15:53:12 peter - * cleanup and doesn't give warnings when compiling - - Revision 1.3 1998/01/26 11:56:24 michael - + Added log at the end - - Revision 1.2 - date: 1997/12/01 12:15:45; author: michael; state: Exp; lines: +14 -12 - + added copyright reference in header. - - Revision 1.1 - date: 1997/11/27 08:33:49; author: michael; state: Exp; - Initial revision - - Revision 1.1.1.1 - date: 1997/11/27 08:33:49; author: michael; state: Exp; lines: +0 -0 - FPC RTL CVS start }