Skip to content

Commit 32bbcd1

Browse files
mms: Cleanup slightly
1 parent b89bef0 commit 32bbcd1

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/mms/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ plugindir := ${plugindir}/${TRANSPORT_PLUGIN_DIR}
99

1010
LD = ${CXX}
1111

12-
CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MMS_CFLAGS} -I../.. -Wall
12+
CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MMS_CFLAGS} -I../..
1313
CFLAGS += ${PLUGIN_CFLAGS}
1414
LIBS += ${MMS_LIBS}

src/mms/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ have_mms = mms_dep.found()
55
if have_mms
66
shared_module('mms',
77
'mms.cc',
8-
dependencies: [audacious_dep, mms_dep, glib_dep],
8+
dependencies: [audacious_dep, mms_dep],
99
name_prefix: '',
1010
install: true,
1111
install_dir: transport_plugin_dir

src/mms/mms.cc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,12 @@
1717
* the use of this software.
1818
*/
1919

20-
#include <stdlib.h>
21-
#include <string.h>
22-
2320
#include <libmms/mms.h>
2421
#include <libmms/mmsh.h>
2522

26-
#include <libaudcore/runtime.h>
2723
#include <libaudcore/i18n.h>
2824
#include <libaudcore/plugin.h>
25+
#include <libaudcore/runtime.h>
2926

3027
static const char * const mms_schemes[] = {"mms"};
3128

0 commit comments

Comments
 (0)