fixes to handle broken libart_lgpl 2.3.18+ headers

git-svn-id: svn://localhost/ardour2/trunk@1539 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-03-01 18:28:04 +00:00
parent c6d7221890
commit 07bf584673
2 changed files with 6 additions and 2 deletions

View File

@ -16,7 +16,11 @@
#include <libgnomecanvas/libgnomecanvas.h>
#include <gtk/gtkenums.h>
extern "C" {
/* some versions of libart contain functions not inside an extern C block */
#include <libart_lgpl/art_misc.h>
}
#include <libart_lgpl/art_pixbuf.h>

View File

@ -119,7 +119,7 @@ xpm2rgb (const char** xpm, uint32_t& w, uint32_t& h)
return 0;
}
savergb = rgb = (unsigned char*)art_alloc (h * w * 3);
savergb = rgb = (unsigned char*) malloc (h * w * 3);
// LOAD XPM COLORMAP LONG ENOUGH TO DO CONVERSION
for (t = 0; t < colors; ++t) {
@ -162,7 +162,7 @@ xpm2rgba (const char** xpm, uint32_t& w, uint32_t& h)
return 0;
}
savergb = rgb = (unsigned char*)art_alloc (h * w * 4);
savergb = rgb = (unsigned char*) malloc (h * w * 4);
// LOAD XPM COLORMAP LONG ENOUGH TO DO CONVERSION