Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - marismaro

Pages: [1]
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)

2
General / Re: [OSX] Error building latest SFML snapshot "lzma.h not found"
« on: September 28, 2012, 02:16:00 am »
Not that I can recall...Although I did update to Lion and Xcode 4.5 recently, would either of those have overwritten CFBase.h?

3
General / [OSX] Error building latest SFML snapshot "lzma.h not found"
« on: September 27, 2012, 02:04:33 am »
Scanning dependencies of target sfml-window
[ 19%] Building CXX object src/SFML/Window/CMakeFiles/sfml-window.dir/Context.cpp.o
[ 20%] Building CXX object src/SFML/Window/CMakeFiles/sfml-window.dir/GlContext.cpp.o
[ 21%] Building CXX object src/SFML/Window/CMakeFiles/sfml-window.dir/GlResource.cpp.o
[ 22%] Building CXX object src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.o
In file included from /System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h:38,
                 from /System/Library/Frameworks/IOKit.framework/Headers/hid/IOHIDDevice.h:27,
                 from /Users/omar/Desktop/SFML2/src/SFML/Window/OSX/JoystickImpl.hpp:33,
                 from /Users/omar/Desktop/SFML2/src/SFML/Window/JoystickImpl.hpp:85,
                 from /Users/omar/Desktop/SFML2/src/SFML/Window/JoystickManager.hpp:32,
                 from /Users/omar/Desktop/SFML2/src/SFML/Window/Joystick.cpp:29:
/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h:45:18: error: lzma.h: No such file or directory
make[2]: *** [src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.o] Error 1
make[1]: *** [src/SFML/Window/CMakeFiles/sfml-window.dir/all] Error 2



Why would I be getting this? I'm pretty sure lzma.h has not moved.

Pages: [1]