From 438e51958afb0aa30fa7d94074c8a294ed630374 Mon Sep 17 00:00:00 2001 From: "Philip.Hazel" Date: Tue, 24 Feb 2015 14:21:28 +0000 Subject: [PATCH] Fix DECL/DEFN typo that affects Windows. --- ChangeLog | 3 +++ src/pcre2_serialize.c | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f01956c..5bce0d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -87,6 +87,9 @@ transfer from PCRE1, meaning that CMake configuration failed if "build tests" was selected. (2) The file src/pcre2_serialize.c had not been added to the list of PCRE2 sources, which caused a failure to build pcre2test. +18. Fixed typo in pcre2_serialize.c (DECL instead of DEFN) that causes problems +only on Windows. + Version 10.00 05-January-2015 ----------------------------- diff --git a/src/pcre2_serialize.c b/src/pcre2_serialize.c index 01ae579..828b946 100644 --- a/src/pcre2_serialize.c +++ b/src/pcre2_serialize.c @@ -68,7 +68,7 @@ character width. */ * Serialize compiled patterns * *************************************************/ -PCRE2_EXP_DECL int32_t PCRE2_CALL_CONVENTION +PCRE2_EXP_DEFN int32_t PCRE2_CALL_CONVENTION pcre2_serialize_encode(const pcre2_code **codes, int32_t number_of_codes, uint8_t **serialized_bytes, PCRE2_SIZE *serialized_size, pcre2_general_context *gcontext) @@ -141,7 +141,7 @@ return number_of_codes; * Deserialize compiled patterns * *************************************************/ -PCRE2_EXP_DECL int32_t PCRE2_CALL_CONVENTION +PCRE2_EXP_DEFN int32_t PCRE2_CALL_CONVENTION pcre2_serialize_decode(pcre2_code **codes, int32_t number_of_codes, const uint8_t *bytes, pcre2_general_context *gcontext) { @@ -227,7 +227,7 @@ return number_of_codes; * Get the number of serialized patterns * *************************************************/ -PCRE2_EXP_DECL int32_t PCRE2_CALL_CONVENTION +PCRE2_EXP_DEFN int32_t PCRE2_CALL_CONVENTION pcre2_serialize_get_number_of_codes(const uint8_t *bytes) { const pcre2_serialized_data *data = (const pcre2_serialized_data *)bytes; @@ -245,7 +245,7 @@ return data->number_of_codes; * Free the allocated stream * *************************************************/ -PCRE2_EXP_DECL void PCRE2_CALL_CONVENTION +PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION pcre2_serialize_free(uint8_t *bytes) { if (bytes != NULL)