Commit 3e53b9d5 authored by Led's avatar Led

0.12.0

parent 79382483
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:
......
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for mpd 0.12.0rc4.
# 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.0rc4'
PACKAGE_STRING='mpd 0.12.0rc4'
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.0rc4 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.0rc4:";;
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.0rc4
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.0rc4, 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.0rc4, 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.0rc4
mpd config.status 0.12.0
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
......
dnl AC_INIT(src/main.c)
dnl AM_INIT_AUTOMAKE(mpd, 0.12.0rc4)
dnl AM_INIT_AUTOMAKE(mpd, 0.12.0)
AC_PREREQ(2.58)
AC_INIT(mpd, 0.12.0rc4, 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)
......
......@@ -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)
......
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment