1
General / Re: [OSX] Error building latest SFML snapshot "lzma.h not found"
« on: September 28, 2012, 02:19:25 am »
#if defined(__GNUC__) || TARGET_OS_WIN32
#include <stdint.h>
#include <stdbool.h>
#endif
#if __BLOCKS__
#include <lzma.h>
#endif
// The arguments to these availability macros is a version number, e.g. 10_6, 3_0
#if TARGET_OS_MAC && !(TARGET_OS_EMBEDDED || TARGET_OS_IPHONE)
#include <AvailabilityMacros.h>
#include <Availability.h>
Here's the section it shows up in, should I just delete these lines from CFBase.h? (first make a backup of course)
#include <stdint.h>
#include <stdbool.h>
#endif
#if __BLOCKS__
#include <lzma.h>
#endif
// The arguments to these availability macros is a version number, e.g. 10_6, 3_0
#if TARGET_OS_MAC && !(TARGET_OS_EMBEDDED || TARGET_OS_IPHONE)
#include <AvailabilityMacros.h>
#include <Availability.h>
Here's the section it shows up in, should I just delete these lines from CFBase.h? (first make a backup of course)