Skip to content

Commit 44df4a7

Browse files
committed
Issue 325 - When building regex for Windows, don't repeatedly define the global variable re_syntax_options.
1 parent 7fa91dd commit 44df4a7

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

external/regex/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(WIN32 OR CYGWIN) # windows
1818
)
1919

2020
set_target_properties(regex
21-
PROPERTIES COMPILE_FLAGS "-Dbool=int -Dtrue=1 -Dfalse=0 -DUSE_REGEX_STATIC"
21+
PROPERTIES COMPILE_FLAGS "-Dbool=int -Dtrue=1 -Dfalse=0 -DREGEX_STATIC"
2222
)
2323

2424
endif()

external/regex/regex.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,23 @@
3535
#if (defined __WIN32__) || (defined _WIN32)
3636
# ifdef BUILD_REGEX_DLL
3737
# define REGEX_DLL_IMPEXP __DLL_EXPORT__
38+
# define REGEX_VARIABLE_IMPEXP __DLL_EXPORT__
3839
# elif defined(REGEX_STATIC)
3940
# define REGEX_DLL_IMPEXP
41+
# define REGEX_VARIABLE_IMPEXP
4042
# elif defined (USE_REGEX_DLL)
4143
# define REGEX_DLL_IMPEXP __DLL_IMPORT__
44+
# define REGEX_VARIABLE_IMPEXP __DLL_IMPORT__
4245
# elif defined (USE_REGEX_STATIC)
4346
# define REGEX_DLL_IMPEXP
47+
# define REGEX_VARIABLE_IMPEXP extern
4448
# else /* assume USE_REGEX_DLL */
4549
# define REGEX_DLL_IMPEXP __DLL_IMPORT__
50+
# define REGEX_VARIABLE_IMPEXP __DLL_IMPORT__
4651
# endif
4752
#else /* __WIN32__ */
4853
# define REGEX_DLL_IMPEXP
54+
# define REGEX_VARIABLE_IMPEXP
4955
#endif
5056

5157
/* Allow the use in C++ code. */
@@ -202,7 +208,7 @@ typedef unsigned long int reg_syntax_t;
202208
some interfaces). When a regexp is compiled, the syntax used is
203209
stored in the pattern buffer, so changing this does not affect
204210
already-compiled regexps. */
205-
REGEX_DLL_IMPEXP reg_syntax_t re_syntax_options;
211+
REGEX_VARIABLE_IMPEXP reg_syntax_t re_syntax_options;
206212

207213
/* Define combinations of the above bits for the standard possibilities.
208214
(The [[[ comments delimit what gets put into the Texinfo file, so

0 commit comments

Comments
 (0)