Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
87b624f5
Commit
87b624f5
authored
Sep 16, 2011
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.16.x'
parents
e1efc71a
443e9638
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
7 deletions
+11
-7
Makefile.am
Makefile.am
+1
-1
NEWS
NEWS
+1
-0
configure.ac
configure.ac
+6
-4
curl_input_plugin.c
src/input/curl_input_plugin.c
+1
-1
pulse_output_plugin.c
src/output/pulse_output_plugin.c
+2
-1
No files found.
Makefile.am
View file @
87b624f5
ACLOCAL_AMFLAGS
=
-I
m4
AUTOMAKE_OPTIONS
=
foreign 1.10 dist-bzip2 subdir-objects
AM_CPPFLAGS
=
-I
$(srcdir)
/src
$(GLIB_CFLAGS)
AM_CPPFLAGS
+
=
-I
$(srcdir)
/src
$(GLIB_CFLAGS)
AM_CPPFLAGS
+=
-DSYSTEM_CONFIG_FILE_LOCATION
=
'"
$(sysconfdir)
/mpd.conf"'
...
...
NEWS
View file @
87b624f5
...
...
@@ -22,6 +22,7 @@ ver 0.17 (2011/??/??)
ver 0.16.5 (2010/??/??)
* configure.ac: disable assertions in the non-debugging build
* pcm_format: fix 32-to-24 bit conversion (the "silence" bug)
* input:
- rewind: reduce heap usage
...
...
configure.ac
View file @
87b624f5
...
...
@@ -37,7 +37,9 @@ PKG_PROG_PKG_CONFIG
dnl ---------------------------------------------------------------------------
dnl Declare Variables
dnl ---------------------------------------------------------------------------
AC_SUBST(AM_CPPFLAGS,"")
AC_SUBST(AM_CFLAGS,"")
AC_SUBST(AM_CXXFLAGS,"")
AC_SUBST(MPD_LIBS)
AC_SUBST(MPD_CFLAGS)
...
...
@@ -1469,10 +1471,9 @@ dnl CFLAGS
dnl ---------------------------------------------------------------------------
dnl ---------------------------------- debug ----------------------------------
#if test "x$enable_debug" = xno; then
# don't set NDEBUG for now, until MPD is stable
#AM_CFLAGS="$AM_CFLAGS -DNDEBUG"
#fi
if test "x$enable_debug" = xno; then
AM_CPPFLAGS="$AM_CPPFLAGS -DNDEBUG"
fi
dnl ----------------------------------- GCC -----------------------------------
if test x$GCC = xyes
...
...
@@ -1497,6 +1498,7 @@ fi
dnl ---------------------------- warnings as errors ---------------------------
if test "x$enable_werror" = xyes; then
AM_CFLAGS="$AM_CFLAGS -Werror -pedantic-errors"
AM_CXXFLAGS="$AM_CXXFLAGS -Werror"
fi
dnl ---------------------------------------------------------------------------
...
...
src/input/curl_input_plugin.c
View file @
87b624f5
...
...
@@ -780,7 +780,7 @@ buffer_free_callback(gpointer data, G_GNUC_UNUSED gpointer user_data)
assert
(
buffer
->
consumed
<=
buffer
->
size
);
g_free
(
data
);
g_free
(
buffer
);
}
static
void
...
...
src/output/pulse_output_plugin.c
View file @
87b624f5
...
...
@@ -72,7 +72,8 @@ pulse_output_set_mixer(struct pulse_output *po, struct pulse_mixer *pm)
}
void
pulse_output_clear_mixer
(
struct
pulse_output
*
po
,
struct
pulse_mixer
*
pm
)
pulse_output_clear_mixer
(
struct
pulse_output
*
po
,
G_GNUC_UNUSED
struct
pulse_mixer
*
pm
)
{
assert
(
po
!=
NULL
);
assert
(
pm
!=
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment