summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--conanfile.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/conanfile.py b/conanfile.py
index f0d63a20..cabcc4c2 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -19,7 +19,7 @@ class Re3Conan(ConanFile):
default_options = {
"audio": "openal",
"with_libsndfile": False,
- "with_opus": True,
+ "with_opus": False,
# "libsndfile:with_external_libs": False,
# "mpg123:flexible_resampling": False,
# "mpg123:network": False,
@@ -67,9 +67,9 @@ class Re3Conan(ConanFile):
def validate(self):
if self.options["librw"].platform == "gl3" and self.options["librw"].gl3_gfxlib != "glfw":
raise ConanInvalidConfiguration("Only `glfw` is supported as gl3_gfxlib.")
- if not self.options.with_opus:
- if not self.options["libsndfile"].with_external_libs:
- raise ConanInvalidConfiguration("re3 with opus support requires a libsndfile built with external libs (=ogg/flac/opus/vorbis)")
+ #if not self.options.with_opus:
+ # if not self.options["libsndfile"].with_external_libs:
+ # raise ConanInvalidConfiguration("re3 with opus support requires a libsndfile built with external libs (=ogg/flac/opus/vorbis)")
@property
def _re3_audio(self):