Commit 8656100e authored by Christophe Massiot's avatar Christophe Massiot

* Updated 0.4.5 Changelog.

* Bumped up revision number to 0.4.5.
* Do not use vasprint on Mac OS X because X.1 doesn't have that.
parent 813fa2f5
......@@ -2,6 +2,29 @@
# ChangeLog for vlc #
#===================#
0.4.5
**
* ./plugins/x11/xcommon.c: we include Xmd.h before dpms.h (compilation fix
for Solaris).
* ALL: many BeOS fixes and enhancements.
* ALL: VLC is now compliant with MPEG-2 TS standards embedding A/52
audio. It can still read from the old VLS with --vls-backwards-compat.
* ./plugins/familiar: interface for familiar Linux.
* ./plugins/qte: Qt/embedded video output.
* ./plugins/network/ipv4.c: added a --iface-addr option to select which
interface to use for multicast sockets.
* configure.in, configure: user -mms-bitfields instead of -fnative-struct
for mingw32 gcc-3.x.
* include/interface.h, plugins/dummy/intf_dummy.c, plugins/text/logger.c,
plugins/text/rc.c: display message on Win32 explaining how to get back
to the GUI mode.
* include/threads_funcs.h, src/misc/win32_specific.c: ignore the
win9x-cv-method config option on WinNT when fast-mutex is not enabled.
* plugins/access/rtp.c: backported RTP access module from HEAD.
* plugins/access/http.c: fixed a compile issue in the HTTP plug-in.
* configure.in: fixed bug with $(QTDIR).
0.4.4
Sun, 11 Aug 2002 01:18:13 +0200
......
......@@ -1151,7 +1151,7 @@ test -n "$target_alias" &&
program_prefix=${target_alias}-
PACKAGE="vlc"
VERSION="0.4.4"
VERSION="0.4.5"
CODENAME=Ourumov
save_CFLAGS="${CFLAGS}"
......
......@@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h)
AC_CANONICAL_SYSTEM
PACKAGE="vlc"
VERSION="0.4.4"
VERSION="0.4.5"
CODENAME=Ourumov
dnl Save CFLAGS and LDFLAGS
......
......@@ -4,7 +4,7 @@
* interface, such as message output. See config.h for output configuration.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: intf_msg.c,v 1.49.2.1 2002/08/10 19:40:04 sam Exp $
* $Id: intf_msg.c,v 1.49.2.2 2002/10/10 22:51:02 massiot Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
*
......@@ -311,14 +311,14 @@ static void QueueMsg( int i_type, int i_level, char *psz_format, va_list ap )
#ifdef WIN32
char * psz_temp;
#endif
#ifndef HAVE_VASPRINTF
#if !defined(HAVE_VASPRINTF) || defined(SYS_DARWIN)
int i_size = strlen(psz_format) + INTF_MAX_MSG_SIZE;
#endif
/*
* Convert message to string
*/
#ifdef HAVE_VASPRINTF
#if defined(HAVE_VASPRINTF) && !defined(SYS_DARWIN)
vasprintf( &psz_str, psz_format, ap );
#else
psz_str = (char*) malloc( i_size * sizeof(char) );
......@@ -333,7 +333,7 @@ static void QueueMsg( int i_type, int i_level, char *psz_format, va_list ap )
return;
}
#ifndef HAVE_VASPRINTF
#if !defined(HAVE_VASPRINTF) || defined(SYS_DARWIN)
# ifdef WIN32
psz_temp = ConvertPrintfFormatString(psz_format);
if( !psz_temp )
......
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