From 27ef5301eccfe013e965d9247b4308bcdb4c4687 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 4 Oct 2015 12:53:56 -0400 Subject: [PATCH] Default to GPL off for ffmpeg. --- CMake/DefineOptions.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMake/DefineOptions.cmake b/CMake/DefineOptions.cmake index a97cc898f4..ab3a4cdc20 100644 --- a/CMake/DefineOptions.cmake +++ b/CMake/DefineOptions.cmake @@ -28,8 +28,8 @@ option(WITH_PORTABLE_TOMCRYPT "Build with assembly/free tomcrypt, making it port # If WITH_PORTABLE_TOMCRYPT is ON, this will automatically have no effect. option(WITH_NO_ROLC_TOMCRYPT "Build without the ROLC assembly instructions for tomcrypt. (Ignored by Apple builds)" OFF) -# Turn this option off to not use the GPL exclusive components. -option(WITH_GPL_LIBS "Build with GPL libraries." ON) +# Turn this option on to use the GPL exclusive components. +option(WITH_GPL_LIBS "Build with GPL libraries." OFF) # Turn this option off to disable using WAV files with the game. # Note that it is recommended to keep this on.