12.x: Remove mpg123 as dependency

See love2d/love#5
This commit is contained in:
Miku AuahDark
2020-10-15 18:09:54 +08:00
parent 9e09bbb4b1
commit 75c1f1c923
362 changed files with 0 additions and 132183 deletions
-10
View File
@@ -8,7 +8,6 @@
#include <ogg/ogg.h>
#include <vorbis/codec.h>
#include <vorbis/vorbisfile.h>
#include "mpg123.h"
#include <freetype/config/ftconfig.h>
#include <freetype/freetype.h>
#include <SDL.h>
@@ -72,14 +71,6 @@ int main(int argc, char **argv)
return "vorbisfile";
};
vfunc mpg123 = [](strs &c, strs &l)
{
mpg123_init();
c << "N/A";
l << "N/A";
return "mpg123";
};
vfunc freetype = [](strs &c, strs &l)
{
FT_Library lib;
@@ -128,7 +119,6 @@ int main(int argc, char **argv)
funcs.push_back(ogg);
funcs.push_back(vorbis);
funcs.push_back(vorbisfile);
funcs.push_back(mpg123);
funcs.push_back(freetype);
funcs.push_back(SDL2);
funcs.push_back(OpenAL);