1 #define HAVE_CONFIG_H
2 /*************************************************
3 *      Perl-Compatible Regular Expressions       *
4 *************************************************/
5 
6 /* PCRE is a library of functions to support regular expressions whose syntax
7 and semantics are as close as possible to those of the Perl 5 language.
8 
9                        Written by Philip Hazel
10            Copyright (c) 1997-2012 University of Cambridge
11 
12 -----------------------------------------------------------------------------
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
15 
16     * Redistributions of source code must retain the above copyright notice,
17       this list of conditions and the following disclaimer.
18 
19     * Redistributions in binary form must reproduce the above copyright
20       notice, this list of conditions and the following disclaimer in the
21       documentation and/or other materials provided with the distribution.
22 
23     * Neither the name of the University of Cambridge nor the names of its
24       contributors may be used to endorse or promote products derived from
25       this software without specific prior written permission.
26 
27 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 POSSIBILITY OF SUCH DAMAGE.
38 -----------------------------------------------------------------------------
39 */
40 
41 
42 /* This module contains the external function pcre_version(), which returns a
43 string that identifies the PCRE version that is in use. */
44 
45 
46 #ifdef HAVE_CONFIG_H
47 #include "config.h"
48 #endif
49 
50 #include "pcre_internal.h"
51 
52 
53 /*************************************************
54 *          Return version string                 *
55 *************************************************/
56 
57 /* These macros are the standard way of turning unquoted text into C strings.
58 They allow macros like PCRE_MAJOR to be defined without quotes, which is
59 convenient for user programs that want to test its value. */
60 
61 #define STRING(a)  # a
62 #define XSTRING(s) STRING(s)
63 
64 /* A problem turned up with PCRE_PRERELEASE, which is defined empty for
65 production releases. Originally, it was used naively in this code:
66 
67   return XSTRING(PCRE_MAJOR)
68          "." XSTRING(PCRE_MINOR)
69              XSTRING(PCRE_PRERELEASE)
70          " " XSTRING(PCRE_DATE);
71 
72 However, when PCRE_PRERELEASE is empty, this leads to an attempted expansion of
73 STRING(). The C standard states: "If (before argument substitution) any
74 argument consists of no preprocessing tokens, the behavior is undefined." It
75 turns out the gcc treats this case as a single empty string - which is what we
76 really want - but Visual C grumbles about the lack of an argument for the
77 macro. Unfortunately, both are within their rights. To cope with both ways of
78 handling this, I had resort to some messy hackery that does a test at run time.
79 I could find no way of detecting that a macro is defined as an empty string at
80 pre-processor time. This hack uses a standard trick for avoiding calling
81 the STRING macro with an empty argument when doing the test. */
82 
83 #if defined COMPILE_PCRE8
84 PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
pcre_version(void)85 pcre_version(void)
86 #elif defined COMPILE_PCRE16
87 PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
88 pcre16_version(void)
89 #elif defined COMPILE_PCRE32
90 PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
91 pcre32_version(void)
92 #endif
93 {
94 return (XSTRING(Z PCRE_PRERELEASE)[1] == 0)?
95   XSTRING(PCRE_MAJOR.PCRE_MINOR PCRE_DATE) :
96   XSTRING(PCRE_MAJOR.PCRE_MINOR) XSTRING(PCRE_PRERELEASE PCRE_DATE);
97 }
98 
99 /* End of pcre_version.c */
100