Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2011-10-18 22:56:09 +0400
committerAndy Polyakov <appro@openssl.org>2011-10-18 22:56:09 +0400
commit10db9f9f482d08e6890cec0f4ebec4bcba4c6377 (patch)
tree9a31c80a7f5cceccd672be344c053862e494a573 /fips/fips_canister.c
parent9f0d2e1464cc43c0b21304e11ad927f0f0fbd45a (diff)
fips/*: extend fipsro segmenting to all _MSC_VER builds (including WinCE).
Diffstat (limited to 'fips/fips_canister.c')
-rw-r--r--fips/fips_canister.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fips/fips_canister.c b/fips/fips_canister.c
index f00fc7b365..8a3524952e 100644
--- a/fips/fips_canister.c
+++ b/fips/fips_canister.c
@@ -57,7 +57,7 @@ static void *instruction_pointer_xlc(void);
* reference points accordingly. In case you wonder, the values are
* big-endian encoded variable names, just to prevent these arrays
* from being merged by linker. */
-# if defined(_MSC_VER) && defined(_WIN64)
+# if defined(_MSC_VER)
# pragma section("fipsro$a",read)
__declspec(allocate("fipsro$a"))
# endif
@@ -68,7 +68,7 @@ const unsigned int FIPS_rodata_start[]=
# ifdef FIPS_REF_POINT_IS_CROSS_COMPILER_AWARE
# define instruction_pointer FIPS_text_endX
# endif
-# if defined(_MSC_VER) && defined(_WIN64)
+# if defined(_MSC_VER)
# pragma section("fipsro$c",read)
__declspec(allocate("fipsro$c"))
# endif