diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-13 18:58:56 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-13 18:58:56 +0200 |
| commit | d3d0507c053a7dd20d64a1cf73740c1f66493b8a (patch) | |
| tree | f60e03a51994243d3006f7c96709080066763c1f /SConstruct | |
| parent | 6c0be2c017e605c2106823e80e5aaa78fc68aba5 (diff) | |
| download | redot-engine-d3d0507c053a7dd20d64a1cf73740c1f66493b8a.tar.gz | |
Remove speex support, it is obsoleted by opus
As mentioned by upstream, Xiph.Org [0]:
> The Speex codec has been obsoleted by Opus. It will continue to be
> available, but since Opus is better than Speex in all aspects,
> users are encouraged to switch.
[0] http://www.speex.org/
Diffstat (limited to 'SConstruct')
| -rw-r--r-- | SConstruct | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct index 524fb3fef5..730af41545 100644 --- a/SConstruct +++ b/SConstruct @@ -126,7 +126,6 @@ opts.Add('squish','Squish BC Texture Compression in editor (yes/no)','yes') opts.Add('theora','Theora Video (yes/no)','yes') opts.Add('theoralib','Theora Video (yes/no)','no') opts.Add('freetype','Freetype support in editor','builtin') -opts.Add('speex','Speex Audio (yes/no)','yes') opts.Add('xml','XML Save/Load support (yes/no)','yes') opts.Add('png','PNG Image loader support (yes/no)','yes') opts.Add('jpg','JPG Image loader support (yes/no)','yes') @@ -362,9 +361,6 @@ if selected_platform in platform_list: if (env['webp']=='yes'): env.Append(CPPFLAGS=['-DWEBP_ENABLED']); - if (env['speex']=='yes'): - env.Append(CPPFLAGS=['-DSPEEX_ENABLED']); - if (env['tools']=='yes'): env.Append(CPPFLAGS=['-DTOOLS_ENABLED']) if (env['disable_3d']=='yes'): |
