Browse Source

* last fixes for 0.99.12 release

peter 26 years ago
parent
commit
e5ba3f9d49

+ 6 - 5
base/makefile.fpc

@@ -769,11 +769,9 @@ endif
 endif
 
 # Target for the sharedlib install which is not avail for all targets
+ifdef inlinux
 SHAREDINSTALL=sharedinstall
-ifeq ($(OS_TARGET),go32v1)
-SHAREDINSTALL=
-endif
-ifeq ($(OS_TARGET),go32v2)
+else
 SHAREDINSTALL=
 endif
 
@@ -1014,7 +1012,10 @@ endif
 
 #
 # $Log$
-# Revision 1.30  1999-06-03 09:36:31  peter
+# Revision 1.31  1999-06-10 15:02:08  peter
+#   * last fixes for 0.99.12 release
+#
+# Revision 1.30  1999/06/03 09:36:31  peter
 #   * first things for sharedlib to work again
 #
 # Revision 1.29  1999/06/01 13:27:24  peter

+ 2 - 0
install/debian/fp-utils.files

@@ -5,4 +5,6 @@
 /usr/bin/ptop
 /usr/man/man1/ptop.1
 /usr/man/man1/ppudump.1
+/usr/man/man1/ppumove.1
+/usr/man/man1/ppdep.1
 /usr/man/man5/ptop.cfg.5

+ 1 - 1
install/debian/rules

@@ -157,7 +157,7 @@ fp-utils: installbin
 	@echo "--- Building: $@"
 	dh_installdocs		-p$@ -P$(BUILD_DIR)/$@
 	dh_installchangelogs	-p$@ -P$(BUILD_DIR)/$@
-	dh_undocumented		-p$@ -P$(BUILD_DIR)/$@ h2pas.1 ppumove.1 ppdep.1
+	dh_undocumented		-p$@ -P$(BUILD_DIR)/$@ h2pas.1
 	dh_movefiles		-p$@ -P$(BUILD_DIR)/$@
 	dh_compress		-p$@ -P$(BUILD_DIR)/$@
 	dh_fixperms		-p$@ -P$(BUILD_DIR)/$@

+ 2 - 2
install/fpc-0.99.12.spec

@@ -10,7 +10,7 @@ Packager: Michael Van Canneyt ([email protected])
 URL: http://tfdec1.fys.kuleuven.ac.be/~michael/fpc/fpc.html
 
 %define fpcdir /usr/lib/fpc/%{PACKAGE_VERSION}
-%define docdir /usr/doc/fpc/%{PACKAGE_VERSION}
+%define docdir /usr/doc/fpc-%{PACKAGE_VERSION}
 
 %description	
 The Free Pascal Compiler is a Turbo Pascal 7.0 and Delphi compatible 32bit
@@ -39,7 +39,7 @@ NEWPP=`pwd`/compiler/ppc386
 	make utils_install PP=${NEWPP}
 
 	make base_install PP=${NEWPP}
-	make demo_install PP=${NEWPP}
+	make demo_install PP=${NEWPP} DOCINSTALLDIR=%{docdir}
 	make man_install PP=${NEWPP}
 	
 %clean

+ 1 - 0
install/fpc-docs-0.99.12.spec

@@ -34,3 +34,4 @@ the documentation in HTML format
 /usr/doc/fpc-0.99.12/user
 /usr/doc/fpc-0.99.12/ref
 /usr/doc/fpc-0.99.12/units
+/usr/doc/fpc-0.99.12/buttons

+ 2 - 2
install/readme.txt

@@ -146,7 +146,7 @@ w3209912.zip specific:
       GInstall 3.16
       Date 3.16
       Echo 3.16
-      UPX 0.72
+      UPX 0.71
   gdbw32.zip      contains the GNU Debugger 4.16.1 for Win32
 
 os209912.zip specific:
@@ -175,7 +175,7 @@ os209912.zip specific:
 common files in dos09912.zip, w3209912.zip and os209912.zip:
 ------------------------------------------------------------
   demo.zip        contains some demo files
-  docs-htm.zip    contains the documentation in HTML format
+  doc-html.zip    contains the documentation in HTML format
   docs-ps.zip     contains the documentation in PostScript
   install.exe     installation program
   install.dat     installation data

+ 2 - 0
install/whatsnew.txt

@@ -14,6 +14,8 @@ Compiler:
   + new compiler directives (path and other cmdline switches)
   + val,readln support range checking
   + initialization/finalization support
+  + methodpointer support
+  + message support
   * better intel,at&t parsers with mmx,kni support
   * better unit dependency handling and recompiling
   * static var fixes

+ 10 - 4
rtl/win32/Makefile

@@ -33,12 +33,15 @@ RTL=..
 INC=$(RTL)/inc
 PROCINC=$(RTL)/$(CPU)
 
+# Unit dir
+UNITDIR=.
+
 # Needed options
 ifneq ("$(FPC_VERSION)","0.99.10")
 ifndef BROWSER
 NEEDOPT=-b-
 endif
-endif 
+endif
 
 # Where to place the result files
 TARGETDIR=.
@@ -62,7 +65,7 @@ LOADEROBJECTS=wprt0 wdllprt0
 
 # Unit Objects
 UNITOBJECTS=$(SYSTEMUNIT) objpas strings \
-            windows ole2 opengl32 \
+	    windows ole2 opengl32 \
 	    dos crt objects \
 	    sysutils typinfo math \
 	    cpu mmx getopts heaptrc
@@ -220,7 +223,7 @@ objects$(PPUEXT) : $(INC)/objects.pp objinc.inc $(SYSTEMPPU)
 #
 
 sysutils$(PPUEXT) : $(OBJPASDIR)/sysutils.pp $(wildcard $(OBJPASDIR)/*.inc) \
-                    filutil.inc disk.inc objpas$(PPUEXT) dos$(PPUEXT) windows$(PPUEXT)
+		    filutil.inc disk.inc objpas$(PPUEXT) dos$(PPUEXT) windows$(PPUEXT)
 	$(COMPILER) -I$(OBJPASDIR) $(OBJPASDIR)/sysutils.pp $(REDIR)
 
 typinfo$(PPUEXT): $(OBJPASDIR)/typinfo.pp objpas$(PPUEXT)
@@ -379,7 +382,10 @@ endif
 
 #
 # $Log$
-# Revision 1.31  1999-05-13 22:38:03  peter
+# Revision 1.32  1999-06-10 15:02:15  peter
+#   * last fixes for 0.99.12 release
+#
+# Revision 1.31  1999/05/13 22:38:03  peter
 #   * -Sg for heaptrc
 #
 # Revision 1.30  1999/05/10 19:34:06  florian