aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-12-10 15:06:16 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-12-10 15:06:16 +0000
commita81f9853a8c37de63e386a316ef41110f89591d8 (patch)
treef123edf631d4b613e6cfc3e07e8e6f376f587fca
parent1899892a174d284febe38f0d93f62fcfe60285c0 (diff)
downloadusdx-a81f9853a8c37de63e386a316ef41110f89591d8.tar.gz
usdx-a81f9853a8c37de63e386a316ef41110f89591d8.tar.xz
usdx-a81f9853a8c37de63e386a316ef41110f89591d8.zip
revert the accidental changes of the previous commit.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2017 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--src/lib/pcre/pcre.pas13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/lib/pcre/pcre.pas b/src/lib/pcre/pcre.pas
index 99411830..50e3371a 100644
--- a/src/lib/pcre/pcre.pas
+++ b/src/lib/pcre/pcre.pas
@@ -56,12 +56,6 @@ interface
{$WEAKPACKAGEUNIT ON}
-// (p3) this is the switch to change between static and dynamic linking.
-// It is set to dynamic by default. To disable simply insert a '.' before the '$'
-//
-// NOTE: if you enable static linking of DLL, this means that the pcre.dll *must*
-// be in the users path or an AV will occur at startup
-
(*$HPPEMIT '#include "pcre.h"'*)
const
@@ -262,12 +256,11 @@ const
type
{$IFNDEF FPC}
- {$IFDEF CPU32}
- SizeInt = Integer;
- {$ENDIF CPU32}
{$IFDEF CPU64}
SizeInt = Int64;
- {$ENDIF CPU64}
+ {$ELSE ~CPU64}
+ SizeInt = Integer;
+ {$ENDIF ~CPU64}
PPAnsiChar = ^PAnsiChar;
{$ENDIF ~FPC}
PPPAnsiChar = ^PPAnsiChar;