* small fixes so it compiles

This commit is contained in:
peter 1998-03-27 00:50:22 +00:00
parent cb3964071a
commit cbbfd69395
4 changed files with 243 additions and 99 deletions

View File

@ -84,12 +84,12 @@
(MAKELONG((short) ((pt).x), (short) ((pt).y)))
#define SECURITY_NULL_SID_AUTHORITY {0,0,0,0,0,0}
#define SECURITY_WORLD_SID_AUTHORITY {0,0,0,0,0,1}
#define SECURITY_LOCAL_SID_AUTHORITY {0,0,0,0,0,2}
#define SECURITY_CREATOR_SID_AUTHORITY {0,0,0,0,0,3}
#define SECURITY_NON_UNIQUE_AUTHORITY {0,0,0,0,0,4}
#define SECURITY_NT_AUTHORITY {0,0,0,0,0,5}
#define SECURITY_NULL_SID_AUTHORITY 0,0,0,0,0,0
#define SECURITY_WORLD_SID_AUTHORITY 0,0,0,0,0,1
#define SECURITY_LOCAL_SID_AUTHORITY 0,0,0,0,0,2
#define SECURITY_CREATOR_SID_AUTHORITY 0,0,0,0,0,3
#define SECURITY_NON_UNIQUE_AUTHORITY 0,0,0,0,0,4
#define SECURITY_NT_AUTHORITY 0,0,0,0,0,5
****************************************************************************}
@ -514,34 +514,31 @@ end.
{
$Log$
Revision 1.1 1998-03-25 11:18:46 root
Initial revision
Revision 1.2 1998-03-27 00:50:22 peter
* small fixes so it compiles
Revision 1.1.1.1 1998/03/25 11:18:46 root
* Restored version
Revision 1.5 1998/01/26 12:02:21 michael
+ Added log at the end
Working file: rtl/win32/base.pp
description:
----------------------------
revision 1.4
date: 1997/12/01 12:42:46; author: michael; state: Exp; lines: +10 -15
+ added copyright reference in header.
----------------------------
revision 1.3
date: 1997/11/27 23:28:30; author: florian; state: Exp; lines: +14 -14
- Win32: base.pp compilable, but there is a compiler bug, so wrong assembler
is created
- Win32: API interface units renamed to *.pp
----------------------------
revision 1.2
date: 1997/11/27 23:11:56; author: florian; state: Exp; lines: +2 -2
- Win32: some errors of base removed
- Win32: unit base to makefile added
----------------------------
revision 1.1
date: 1997/11/27 10:15:30; author: florian; state: Exp;
Win32 files added (they are untested)
=============================================================================
}

View File

@ -1,6 +1,17 @@
# makes the SYSTEM-Unit for Win32
#
# Copyright (c) 1996 by Michael Van Canneyt
# $Id$
# This file is part of the Free Pascal run time library.
# Copyright (c) 1996-98 by Michael van Canneyt
#
# Makefile for the Free Pascal Go32v1 Runtime Library
#
# See the file COPYING.FPC, included in this distribution,
# for details about the copyright.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
#####################################################################
# Start of configurable section.
@ -11,13 +22,18 @@
#####################################################################
# set the directory where to install the units.
ifndef UNITINSTALLDIR
UNITINSTALLDIR=c:\lib\ppc\win32
endif
# set the directory where to install libraries
ifndef LIBINSTALLDIR
LIBINSTALLDIR=c:/pp/bin
LIBINSTALLDIR=c:\lib
endif
# What is the Operating System
ifndef OS_SRC
OS_SRC=DOS
OS_SRC=GO32V2
endif
# What is the target operating system ?
@ -25,7 +41,14 @@ ifndef OS_TARGET
OS_TARGET=WIN32
endif
# What is the target processor :
ifndef CPU
CPU=i386
#CPU=m68k
endif
# What compiler to use ?
# I think ppc386 is better (it's mostly in path) (FK)
ifndef PP
PP=ppc386
endif
@ -36,8 +59,9 @@ ifndef OPT
OPT=
endif
ifndef CPU
CPU=i386
# Where is the ppumove program ?
ifndef PPUMOVE
PPUMOVE=ppumove
endif
#####################################################################
@ -48,32 +72,27 @@ endif
# Where are the include files
INC=../inc
PROCINC=../$(CPU)
ifeq ($(OS_TARGET),$(OS_SRC))
CROSSCOMPILE=NO
else
CROSSCOMPILE=YES
endif
OBJPASDIR=../objpas
# To copy pograms
ifndef COPY
ifeq ($(DOS),YES)
COPY=copy
else
COPY=cp -f -p
COPY=cp -p
endif
endif
# To delete programs
# Check delete program
ifndef DEL
ifeq ($(DOS),YES)
DEL=del
else
DEL=rm
DEL=rm -f
endif
endif
# To install programs
# To install files
ifndef INSTALL
ifeq ($(DOS),YES)
INSTALL=copy
@ -82,6 +101,15 @@ INSTALL=install -m 644
endif
endif
# To install programs
ifndef INSTALLEXE
ifeq ($(DOS),YES)
INSTALLEXE=copy
else
INSTALLEXE=install -m 755
endif
endif
# To make a directory.
ifndef MKDIR
ifeq ($(DOS),YES)
@ -91,8 +119,7 @@ MKDIR=install -m 755 -d
endif
endif
#diff program
# diff program
ifndef REFPATH
REFPATH=/usr/local/fpk/work/new/rtl
endif
@ -103,86 +130,204 @@ ifndef DIFFOPTS
DIFFOPTS=-b -c
endif
ifeq ($(CROSSCOMPILE),YES)
OPT:=$(OPT) -dCROSSCOMPILE -TWIN32
#
# System independent Commandline Options
#
# Cross compiling ?
ifeq ($(OS_TARGET),$(OS_SRC))
CROSSCOMPILE=NO
else
CROSSCOMPILE=YES
endif
# add required options... (-dFPC is required for older versions)
override OPT:= $(OPT) -dFPC -d$(CPU)
# Was a config file specified ?
ifdef CFGFILE
OPT:=$(OPT) @$(CFGFILE)
override OPT:=$(OPT) @$(CFGFILE)
endif
# os independent depends
SYSTEMDEPS=$(INC)/system.inc $(INC)/systemh.inc $(INC)/mathh.inc $(INC)/real2str.inc \
$(INC)/heaph.inc $(INC)/innr.inc $(INC)/sstrings.inc $(INC)/file.inc \
$(INC)/text.inc $(INC)/typefile.inc $(INC)/version.inc $(INC)/filerec.inc \
$(INC)/textrec.inc \
$(PROCINC)/math.inc $(PROCINC)/set.inc $(PROCINC)/heap.inc $(PROCINC)/$(CPU).inc
# Check for crosscompile
ifeq ($(CROSSCOMPILE),YES)
override OPT:= $(OPT) -dCROSSCOMPILE -T$(OS_TARGET)
endif
PPUEXT = .ppu
OEXT = .obj
#
# System dependent Commandline Options
#
.PHONY: all clean install diffs diffclean
#####################################################################
# System dependent
#####################################################################
all : syswin32$(PPUEXT) strings$(PPUEXT) objpas$(PPUEXT) getopts$(PPUEXT) \
base$(PPUEXT)
# Determine needed extensions
PPUEXT=.ppw
PPLEXT=.ppl
OEXT=.obj
ASMEXT=.s
LIBEXT=.a
# Define Linux Units
SYSTEMPPU=syswin32$(PPUEXT)
OBJECTS=strings objpas \
base \
# dos crt objects printer \
cpu mmx getopts \
# No loaders needed
LOADERS=
#####################################################################
# System independent Makefile
#####################################################################
# OS Independent Depends
SYSTEMDEPS=system.inc systemh.inc mathh.inc real2str.inc \
heaph.inc innr.inc sstrings.inc file.inc \
text.inc typefile.inc version.inc filerec.inc \
textrec.inc
# Processor Dependent Depends
SYSPROCDEPS=math.inc set.inc heap.inc $(CPU).inc
# Add Prefix and Suffixes
OBJLOADERS=$(addsuffix $(OEXT), $(LOADERS))
PPUOBJECTS=$(addsuffix $(PPUEXT), $(OBJECTS))
DSYSTEMDEPS=$(addprefix $(INC)/, $(SYSTEMDEPS))
DSYSPROCDEPS=$(addprefix $(PROCINC)/, $(SYSPROCDEPS))
getopts$(PPUEXT) : $(PROCINC)/getopts.pp syswin32$(PPUEXT)
$(COPY) $(PROCINC)/getopts.pp .
$(PP) $(OPT) getopts.pp $(REDIR)
$(DEL) getopts.pp
.PHONY : all install clean \
libs libsclean \
diffs diffclean \
strings$(PPUEXT) : $(PROCINC)/strings.pp syswin32$(PPUEXT)
all : $(OBJLOADERS) $(PPUOBJECTS)
install : all
$(MKDIR) $(UNITINSTALLDIR)
$(INSTALL) *$(PPUEXT) *$(OEXT) $(UNITINSTALLDIR)
clean :
-$(DEL) *$(OEXT) *$(ASMEXT) *$(PPUEXT) *.PPS log
#####################################################################
# Files
#####################################################################
#
# Loaders
#
#
# Base Units (System, strings, os-dependent-base-unit)
#
$(SYSTEMPPU) : syswin32.pp $(DSYSTEMDEPS) $(DSYSPROCDEPS)
$(COPY) $(DSYSTEMDEPS) .
$(COPY) $(DSYSPROCDEPS) .
$(PP) $(OPT) -Us -Sg syswin32.pp $(REDIR)
$(DEL) $(SYSTEMDEPS)
$(DEL) $(SYSPROCDEPS)
strings$(PPUEXT) : $(PROCINC)/strings.pp $(SYSTEMPPU)
$(COPY) $(PROCINC)/strings.pp .
$(PP) $(OPT) strings.pp $(REDIR)
$(DEL) strings.pp
dos$(PPUEXT) : dos.pp strings$(PPUEXT) syswin32$(PPUEXT)
$(PP) $(OPT) dos.pp $(REDIR)
#
# Delphi Object Model
#
base$(PPUEXT) : base.pp syswin32$(PPUEXT)
objpas$(PPUEXT) : $(OBJPASDIR)/objpas.pp $(SYSTEMPPU)
$(COPY) $(OBJPASDIR)/objpas.pp .
$(PP) $(OPT) objpas $(REDIR)
$(DEL) objpas.pp
#
# System Dependent Units
#
base$(PPUEXT) : base.pp $(SYSTEMPPU)
$(PP) $(OPT) base.pp $(REDIR)
objpas$(PPUEXT) : ../objpas/objpas.pp system$(PPUEXT)
$(COPY) ../objpas/objpas.pp .
$(PP) $(OPT) objpas $(REDIR)
$(DEL) objpas.pp
#
# TP7 Compatible RTL Units
#
syswin32$(PPUEXT) : syswin32.pp $(SYSTEMDEP)
$(COPY) $(INC)/*.inc $(PROCINC)/*.inc .
$(PP) $(OPT) -Us -Sg syswin32 $(REDIR)
$(DEL) systemh.inc system.inc real2str.inc version.inc $(CPU).inc sstrings.inc
$(DEL) mathh.inc math.inc set.inc innr.inc heap.inc heaph.inc
$(DEL) filerec.inc textrec.inc file.inc typefile.inc text.inc
dos$(PPUEXT) : dos.pp $(INC)/filerec.inc $(INC)/textrec.inc \
go32$(PPUEXT) strings$(PPUEXT) $(SYSTEMPPU)
$(COPY) $(INC)/filerec.inc $(INC)/textrec.inc .
$(PP) $(OPT) dos $(REDIR)
$(DEL) filerec.inc textrec.inc
clean:
-$(DEL) *$(OEXT)
-$(DEL) *$(PPUEXT)
-$(DEL) *.dif
-$(DEL) *.s
-$(DEL) log
#crt$(PPUEXT) : crt.pp $(INC)/textrec.inc go32$(PPUEXT) $(SYSTEMPPU)
# $(COPY) $(INC)/textrec.inc .
# $(PP) $(OPT) crt $(REDIR)
# $(DEL) textrec.inc
#objects$(PPUEXT) : objects.pp $(SYSTEMPPU)
# $(PP) $(OPT) objects.pp $(REDIR)
#printer$(PPUEXT) : printer.pp $(SYSTEMPPU)
# $(PP) $(OPT) printer.pp $(REDIR)
#
# Other RTL Units
#
cpu$(PPUEXT) : $(PROCINC)/cpu.pp $(SYSTEMPPU)
$(COPY) $(PROCINC)/cpu.pp .
$(PP) $(OPT) cpu.pp $(REDIR)
$(DEL) cpu.pp
mmx$(PPUEXT) : $(PROCINC)/mmx.pp cpu$(PPUEXT) $(SYSTEMPPU)
$(COPY) $(PROCINC)/mmx.pp .
$(PP) $(OPT) mmx.pp $(REDIR)
$(DEL) mmx.pp
getopts$(PPUEXT) : $(PROCINC)/getopts.pp $(SYSTEMPPU)
$(COPY) $(PROCINC)/getopts.pp .
$(PP) $(OPT) getopts.pp $(REDIR)
$(DEL) getopts.pp
#####################################################################
# Libs
#####################################################################
libs: all
libsclean : clean
-$(DEL) *.$(LIBEXT) *$(PPLEXT)
#####################################################################
# Diffs
#####################################################################
%.dif : %.pp
-$(DIFF) $(DIFFOPTS) $*.pp $(REFPATH)/dos/go32v1/$*.pp > $*.dif
%.dif : %.inc
-$(DIFF) $(DIFFOPTS) $*.inc $(REFPATH)/dos/go32v1/$*.inc > $*.dif
%.dif : %.as
-$(DIFF) $(DIFFOPTS) $*.as $(REFPATH)/dos/go32v1/$*.as > $*.dif
diffclean:
-$(DEL) *.dif
install: all
$(MKDIR) $(LIBINSTALLDIR)/units
$(INSTALL) *$(OEXT) *$(PPUEXT) $(LIBINSTALLDIR)/units
%.dif : %.pp
-$(DIFF) $(DIFOPTS) $*.pp $(REFPATH)/win32/$*.pp > $*.dif
%.dif : %.inc
-$(DIFF) $(DIFOPTS) $*.inc $(REFPATH)/win32/$*.inc > $*.dif
%.dif : %.as
-$(DIFF) $(DIFOPTS) $*.as $(REFPATH)/win32/$*.as > $*.dif
makefile.dif : makefile
-$(DIFF) $(DIFFOPTS) makefile $(REFPATH)/os2/makefile > makefile.dif
-$(DIFF) $(DIFFOPTS) makefile $(REFPATH)/dos/go32v1/makefile > makefile.dif
diffs: syswin32.dif os.dif makefile.dif dos.dif base.dif struct.dif \
winheap.dif messages.dif
#####################################################################
# Distribution
#####################################################################
distclean : clean libsclean diffclean
diffs: syswin32.dif dos.dif os.dif

View File

@ -13,9 +13,6 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{ system unit for Win32 }
{$define Win32}
unit syswin32;
{$I os.inc}
@ -194,7 +191,7 @@ end;
function do_write(h,addr,len : longint) : longint;
var
size:longint
size:longint;
begin
if writefile(h,pointer(addr),len,size,nil)=0 then
@ -462,8 +459,11 @@ end.
{
$Log$
Revision 1.1 1998-03-25 11:18:47 root
Initial revision
Revision 1.2 1998-03-27 00:50:22 peter
* small fixes so it compiles
Revision 1.1.1.1 1998/03/25 11:18:47 root
* Restored version
Revision 1.13 1998/03/05 22:37:36 florian
* some stuff added

View File

@ -22,7 +22,6 @@
type
UINT = longint;
DWORD = longint;
LPDWORD = ^DWORD;
BOOL = longint;
{$ifdef UNICODE}
@ -95,8 +94,11 @@
{
$Log$
Revision 1.1 1998-03-25 11:18:47 root
Initial revision
Revision 1.2 1998-03-27 00:50:22 peter
* small fixes so it compiles
Revision 1.1.1.1 1998/03/25 11:18:47 root
* Restored version
Revision 1.5 1998/03/05 22:37:37 florian
* some stuff added
@ -105,7 +107,7 @@
+ Added log at the end
Working file: rtl/win32/win32.inc
description:
----------------------------