changeset 1539:850f1eba9cbd trunk

[svn] - switch to stdlib/unistd.h for malloc (all C89/C99 systems have these). fixes bug #539.
author nenolod
date Wed, 09 Aug 2006 02:04:02 -0700
parents fe671cb74bf9
children 237bb7c97759
files ChangeLog Plugins/Input/wma/libffwma/uri.c Plugins/Input/wma/wma.c
diffstat 3 files changed, 13 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Aug 08 23:43:33 2006 -0700
+++ b/ChangeLog	Wed Aug 09 02:04:02 2006 -0700
@@ -1,3 +1,13 @@
+2006-08-09 06:43:33 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [1990]
+  - fix geometry hinting so that it is ICCCM compliant. patch by whereami.
+  Also fixes: composite and xgl!
+  
+
+  Changes:        Modified:
+  +6 -5           trunk/audacious/ui_playlist.c  
+
+
 2006-08-09 05:39:42 +0000  George Averill <nhjm449@gmail.com>
   revision [1988]
   - Fix misspelling of flac (bug #545)
--- a/Plugins/Input/wma/libffwma/uri.c	Tue Aug 08 23:43:33 2006 -0700
+++ b/Plugins/Input/wma/libffwma/uri.c	Wed Aug 09 02:04:02 2006 -0700
@@ -20,7 +20,8 @@
 /* FIXME: #include "gnet-private.h" */
 #include <glib.h>
 #include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
+#include <unistd.h>
 #include <ctype.h>
 
 #include "uri.h"
--- a/Plugins/Input/wma/wma.c	Tue Aug 08 23:43:33 2006 -0700
+++ b/Plugins/Input/wma/wma.c	Wed Aug 09 02:04:02 2006 -0700
@@ -23,7 +23,7 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 #include <stdlib.h>
-#include <malloc.h>
+#include <unistd.h>
 #include <math.h>
 #include <stdbool.h>
 #include <stdio.h>