From 2448e67641cc1c9e2d0c352988464818ec760bd3 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Wed, 9 Sep 2015 20:47:46 -0400 Subject: [PATCH] Switch portable tomcrypt to ON by default. --- CMake/DefineOptions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/DefineOptions.cmake b/CMake/DefineOptions.cmake index 3963314ec2..5032e08c11 100644 --- a/CMake/DefineOptions.cmake +++ b/CMake/DefineOptions.cmake @@ -22,7 +22,7 @@ option(WITH_JPEG "Build with JPEG Image Support." ON) option(WITH_FULL_RELEASE "Build as a proper, full release." OFF) # Turn this on to compile tomcrypt with no assembly data. This is a portable mode. -option(WITH_PORTABLE_TOMCRYPT "Build with assembly/free tomcrypt, making it portable." OFF) +option(WITH_PORTABLE_TOMCRYPT "Build with assembly/free tomcrypt, making it portable." ON) # Turn this on to not use the ROLC assembly featurs of tomcrypt. # If WITH_PORTABLE_TOMCRYPT is ON, this will automatically have no effect.