diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2015-11-24 20:04:24 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2015-11-24 20:04:24 +0100 |
commit | 045844fc47b84139752fd2652809fdaae2ab0090 (patch) | |
tree | f5eec323444e21383f6f5278d6ab973ffb11ecb3 /drivers | |
parent | 082e3fbb2920340cec7e7b1a3f39083325b4b341 (diff) | |
parent | adbc85cabda0a01d6b65a888bc65c410183cf7e3 (diff) |
Merge pull request #2904 from akien-mga/master
Fix build of ogg and vorbis drivers
Diffstat (limited to 'drivers')
-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 |