diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2015-11-24 19:27:47 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2015-11-24 19:59:57 +0100 |
commit | adbc85cabda0a01d6b65a888bc65c410183cf7e3 (patch) | |
tree | f5eec323444e21383f6f5278d6ab973ffb11ecb3 | |
parent | 082e3fbb2920340cec7e7b1a3f39083325b4b341 (diff) |
Fix build of ogg and vorbis drivers
Regression from ccd40f76e8975b679619eb3591eb56376e82a6b3
-rw-r--r-- | drivers/ogg/SCsub | 2 | ||||
-rw-r--r-- | drivers/vorbis/SCsub | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ogg/SCsub b/drivers/ogg/SCsub index c85d4404f3..11205f5135 100644 --- a/drivers/ogg/SCsub +++ b/drivers/ogg/SCsub @@ -6,5 +6,5 @@ ogg_sources = [ "ogg/framing.c", ] -if env['theora'] != "yes" or env['use_theoraplayer_binary'] != "yes": +#if env['theora'] != "yes" or env['use_theoraplayer_binary'] != "yes": env.drivers_sources+=ogg_sources diff --git a/drivers/vorbis/SCsub b/drivers/vorbis/SCsub index 4a16e80dfc..7b9ca6cc9b 100644 --- a/drivers/vorbis/SCsub +++ b/drivers/vorbis/SCsub @@ -34,5 +34,5 @@ sources_lib = [ env.drivers_sources += sources -if env['theora'] != "yes" or env['use_theoraplayer_binary'] != "yes": +#if env['theora'] != "yes" or env['use_theoraplayer_binary'] != "yes": env.drivers_sources += sources_lib |