[fpc-pascal]Win32 compile and Zip Install problems figured out ...
    Michael A. Hess 
    mhess at miraclec.com
       
    Sat Nov 23 00:39:17 CET 2002
    
    
  
Greetings,
Well with some help from Peter I have figured out what the problem was 
with my FPC build and Zip creation. There is a problem in some of the 
Makefiles. The 'PATHSEP' is getting set wrong in the Win32 invironment 
so it was using '/' instead of '\' for directory paths.
The following line
    ifneq ($(findstring sh.exe,$(SHELL)),)
needs to be changed to
    ifeq ($(findstring sh.exe,$(SHELL)),)
in the following Makefiles
Makefile
packages/extra/opengl/Makefile
packages/extra/fpgtk/Makefile
The rest of the Makefiles do not even contain this line so I am not sure 
why it is being used.
Once I changed those it would do cleans, builds, and zipinstall without 
any problems.
So if someone could fix those issues that would be great.  :-)
-- 
==== Programming my first best destiny! ====
Michael A. Hess      Miracle Concepts, Inc.
mhess at miraclec.com   http://www.miraclec.com
Phone: 570-388-2211  Fax: 570-388-6101
    
    
More information about the fpc-pascal
mailing list