diff options
author | Phil Pennock <pdp@exim.org> | 2011-10-11 03:27:17 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2011-10-11 03:27:17 -0400 |
commit | f82a3c9b085560c97e17a796e01b73f1accfd24e (patch) | |
tree | e16050922f967b071dc0e6c2f6292d02ef92b68a /src | |
parent | 2a6eeda6d1747e96f9a3809be4cea07d6cb11451 (diff) |
PCRE_PRERELEASE is a bare sequence, not a string.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/exim.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/src/exim.c b/src/src/exim.c index 670319b98..a6c0d7832 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -973,7 +973,9 @@ DEBUG(D_any) do { * unless its an ancient version of PCRE in which case it * is not defined */ #ifdef PCRE_PRERELEASE - PCRE_PRERELEASE "", +# define STRINGIFY(x) #x + STRINGIFY(PCRE_PRERELEASE) "", +# undef STRINGIFY #else "", #endif |