]> git.sesse.net Git - vlc/commitdiff
* Updated 0.4.5 Changelog.
authorChristophe Massiot <massiot@videolan.org>
Thu, 10 Oct 2002 22:51:02 +0000 (22:51 +0000)
committerChristophe Massiot <massiot@videolan.org>
Thu, 10 Oct 2002 22:51:02 +0000 (22:51 +0000)
* Bumped up revision number to 0.4.5.
* Do not use vasprint on Mac OS X because X.1 doesn't have that.

ChangeLog
configure
configure.in
src/interface/intf_msg.c

index caf56826ea532d41f8f59811dbfaa50c65271a2e..b89459341b11f734903b1d99625da7ea22f467fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
 
index 35ef2ee36e2b4c1dc200c67228c68103d9c4386a..2d0056a9aeffa6ccc922e33155aaaf514762954b 100755 (executable)
--- a/configure
+++ b/configure
@@ -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}"
index 7b05bd19f6240c297dad942ec0cbc8497c152589..9a24b934fa8f19b7238b2177ed04203d1eefe882 100644 (file)
@@ -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
index e89558d179344b969e4cab627a972a8d8add5ccd..7662f62112acd245d8c183e48a54fe13a04a1469 100644 (file)
@@ -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 )