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
3e53b9d5
Commit
3e53b9d5
authored
Nov 10, 2008
by
Led
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.12.0
parent
79382483
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
16 deletions
+16
-16
ChangeLog
ChangeLog
+1
-1
configure
configure
+9
-9
configure.ac
configure.ac
+2
-2
outputBuffer.c
src/outputBuffer.c
+3
-3
signal_check.c
src/signal_check.c
+1
-1
No files found.
ChangeLog
View file @
3e53b9d5
ver 0.12.0 (2006/
??/??
)
ver 0.12.0 (2006/
9/22
)
* New audio output code which supports:
* A plugin-like architecture
* Non-libao ("native") outputs:
...
...
configure
View file @
3e53b9d5
#
! /bin/sh
#
Guess
values
for
system
-
dependent
variables
and
create
Makefiles
.
#
Generated
by
GNU
Autoconf
2.59
for
mpd
0.12.0
rc4
.
#
Generated
by
GNU
Autoconf
2.59
for
mpd
0.12.0
.
#
#
Report
bugs
to
<
warren
.
dukes
@
gmail
.
com
>.
#
...
...
@@ -423,8 +423,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='
mpd
'
PACKAGE_TARNAME='
mpd
'
PACKAGE_VERSION='
0.12.0
rc4
'
PACKAGE_STRING='
mpd
0.12.0
rc4
'
PACKAGE_VERSION='
0.12.0
'
PACKAGE_STRING='
mpd
0.12.0
'
PACKAGE_BUGREPORT='
warren
.
dukes
@
gmail
.
com
'
# Factoring default headers for most tests.
...
...
@@ -965,7 +965,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures mpd 0.12.0
rc4
to adapt to many kinds of systems.
\`configure' configures mpd 0.12.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
...
...
@@ -1031,7 +1031,7 @@ fi
if test -n "
$
ac_init_help
"; then
case $ac_init_help in
short | recursive ) echo "
Configuration
of
mpd
0.12.0
rc4
:
";;
short | recursive ) echo "
Configuration
of
mpd
0.12.0
:
";;
esac
cat <<\_ACEOF
...
...
@@ -1236,7 +1236,7 @@ fi
test -n "
$
ac_init_help
" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
mpd configure 0.12.0
rc4
mpd configure 0.12.0
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
...
...
@@ -1250,7 +1250,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by mpd $as_me 0.12.0
rc4
, which was
It was created by mpd $as_me 0.12.0, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
...
...
@@ -27401,7 +27401,7 @@ _ASBOX
}
>&
5
cat
>&
5
<<
_CSEOF
This
file
was
extended
by
mpd
$
as_me
0.12.0
rc4
,
which
was
This
file
was
extended
by
mpd
$
as_me
0.12.0
,
which
was
generated
by
GNU
Autoconf
2.59
.
Invocation
command
line
was
CONFIG_FILES
=
$
CONFIG_FILES
...
...
@@ -27464,7 +27464,7 @@ _ACEOF
cat
>>$
CONFIG_STATUS
<<
_ACEOF
ac_cs_version
=
"
\\
mpd config.status 0.12.0
rc4
mpd config.status 0.12.0
configured by $0, generated by GNU Autoconf 2.59,
with options
\\
"
`
echo
"$ac_configure_args"
|
sed
's/[\\""\`\$]/\\\\&/g'
`\\
"
...
...
configure.ac
View file @
3e53b9d5
dnl AC_INIT(src/main.c)
dnl AM_INIT_AUTOMAKE(mpd, 0.12.0
rc4
)
dnl AM_INIT_AUTOMAKE(mpd, 0.12.0)
AC_PREREQ(2.58)
AC_INIT(mpd, 0.12.0
rc4
, warren.dukes@gmail.com)
AC_INIT(mpd, 0.12.0, warren.dukes@gmail.com)
AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION)
AC_SUBST(MPD_LIBS)
...
...
src/outputBuffer.c
View file @
3e53b9d5
...
...
@@ -41,18 +41,18 @@ void clearOutputBuffer(OutputBuffer * cb)
{
int
currentSet
=
1
;
currentChunk
=
-
1
;
cb
->
end
=
cb
->
begin
;
/* be sure to reset metaChunkSets cause we are skipping over audio
* audio chunks, and thus skipping over metadata */
if
(
sendMetaChunk
==
0
&&
currentMetaChunk
>=
0
)
{
if
(
currentChunk
>=
0
&&
sendMetaChunk
==
0
&&
currentMetaChunk
>=
0
)
{
currentSet
=
cb
->
metaChunkSet
[
currentChunk
];
}
clearAllMetaChunkSets
(
cb
);
if
(
sendMetaChunk
==
0
&&
currentMetaChunk
>=
0
)
{
if
(
currentChunk
>=
0
&&
sendMetaChunk
==
0
&&
currentMetaChunk
>=
0
)
{
cb
->
metaChunkSet
[
currentChunk
]
=
currentSet
;
}
currentChunk
=
-
1
;
}
void
flushOutputBuffer
(
OutputBuffer
*
cb
)
...
...
src/signal_check.c
View file @
3e53b9d5
...
...
@@ -22,7 +22,7 @@
#include <errno.h>
#include <stddef.h>
volatile
sig_atomic_t
__caught_signals
[
NSIG
];
static
volatile
sig_atomic_t
__caught_signals
[
NSIG
];
static
void
__signal_handler
(
int
sig
)
{
...
...
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