Bundle libOpenMPT as a dynamic framework, which should be safe once again, now that there is only one version to bundle. Also, now it is using the versions of libvorbisfile and libmpg123 that are bundled with the player, instead of compiling minimp3 and stbvorbis. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
20 lines
323 B
C
20 lines
323 B
C
#ifndef _LIBOPENMPT_CONFIG_H_
|
|
#define _LIBOPENMPT_CONFIG_H_
|
|
|
|
#if 1
|
|
#define MPT_WITH_MPG123 1
|
|
#define MPT_WITH_OGG 1
|
|
#define MPT_WITH_VORBIS 1
|
|
#define MPT_WITH_VORBISFILE 1
|
|
#else
|
|
#define MPT_WITH_MINIMP3 1
|
|
#define MPT_WITH_STBVORBIS 1
|
|
#endif
|
|
|
|
#define MPT_WITH_ZLIB 1
|
|
|
|
#define MPT_BUILD_XCODE 1
|
|
#define ENABLE_ASM 1
|
|
|
|
#endif
|
|
|