Changes between Version 4 and Version 5 of Ticket #533, comment 77
- Timestamp:
- 04/21/15 08:56:37 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #533, comment 77
v4 v5 14 14 That's because the configure line looks like this: 15 15 {{{ 16 ./configure --prefix /Users/osx/gtk/inst --libdir /Users/osx/gtk/inst/lib --build=i386-darwin CC="gcc -arch i386" CXX="g++ -arch i386"16 ./configure --prefix ${JHBUILD_PREFIX} --libdir ${JHBUILD_PREFIX}/lib --build=i386-darwin CC="gcc -arch i386" CXX="g++ -arch i386" 17 17 }}} 18 18 Removing the CC and CXX definitions and using {{{--build=x86_64-darwin}}} allows it to build (completely removing {{{--build=}}} might also work). … … 35 35 Lots of answers: [http://stackoverflow.com/questions/19532125/cant-install-pil-after-mac-os-x-10-9 Can't install PIL after Mac OS X 10.9], but what I did was simply: 36 36 {{{ 37 ln -sf /System/Library/Frameworks/Tk.framework/Versions/8.5/Headers/X11 /Users/osx/gtk/inst/include/37 ln -sf /System/Library/Frameworks/Tk.framework/Versions/8.5/Headers/X11 ${JHBUILD_PREFIX}/include/ 38 38 }}} 39 39 Which is nice because it doesn't require root. … … 83 83 Solved in a similar way to the X11 header problem: 84 84 {{{ 85 ln -sf /System/Library/Frameworks/OpenGL.framework/Versions/A/Headers /Users/osx/gtk/inst/include/GL85 ln -sf /System/Library/Frameworks/OpenGL.framework/Versions/A/Headers ${JHBUILD_PREFIX}/include/GL 86 86 }}} 87 87