diff options
author | Fneufneu <fneufneu@xbmc.org> | 2011-01-31 18:38:07 +0100 |
---|---|---|
committer | spiff <spiff@xbmc.org> | 2011-05-04 21:27:49 +0200 |
commit | 32641343de97b5c22e9586828c4873c83f330c0a (patch) | |
tree | 2436e5cd6423dd629163125f44e7855ab1b7051f /tools | |
parent | 9ed9dafe20d6b09c8c8efc737597968d38247236 (diff) |
FreeBSD does not need malloc.h
Diffstat (limited to 'tools')
-rw-r--r-- | tools/TexturePacker/XBTFWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/TexturePacker/XBTFWriter.cpp b/tools/TexturePacker/XBTFWriter.cpp index aac9222f2e..4e9ce8dddb 100644 --- a/tools/TexturePacker/XBTFWriter.cpp +++ b/tools/TexturePacker/XBTFWriter.cpp @@ -24,7 +24,7 @@ #include <inttypes.h> #include "guilib/XBTF.h" #include "utils/EndianSwap.h" -#ifndef __APPLE__ +#if !defined(__APPLE__) && !defined(__FreeBSD__) #include <malloc.h> #endif #include <memory.h> |