﻿PCRE on Windows

To use PCRE, you need to build the DLL pcre.dll, or for Windows32 you can
use an old version (7.0 year 2006) from gnuwin located at :
http://gnuwin32.sourceforge.net/packages/pcre.htm

The steps with the gnuwin32 package:
  - copy the dll pcre3.dll from directory \pcre-7.0-bin\bin into your working
    directory
  - rename pcre3.dll to pcre.dll
  - using the definition file pcre.def, builds the import library file :
     >gnatdll -e pcre.def -d pcre.dll
	 
  - move the resulting file libpcre.dll.a into your object directory (\obj)
  - move pcre.dll in the exec directory.
  
  No other file is needed : msvcrt.dll and msvcp60.dll are not required.
