How can I install Ruby 1.9.3 in Mac OS X Lion?
Try using the clang compiler instead of the default: rvm install 1.9.3 –with-gcc=clang
Try using the clang compiler instead of the default: rvm install 1.9.3 –with-gcc=clang
Add the following script, as in the example listed in the first link that you posted, BUT do it twice. Once at the beginning of the build and once at the end: if [ $CONFIGURATION == Release ]; then echo “Bumping build number…” plist=${PROJECT_DIR}/${INFOPLIST_FILE} # increment the build number (ie 115 to 116) buildnum=$(/usr/libexec/PlistBuddy -c … Read more
Matthew Buckett’s suggestion in HADOOP-7489 worked for me. Add the following to your hadoop-env.sh file: export HADOOP_OPTS=”-Djava.security.krb5.realm=OX.AC.UK -Djava.security.krb5.kdc=kdc0.ox.ac.uk:kdc1.ox.ac.uk”
launchctl unload -w ~/Library/LaunchAgents/org.postgresql.postgres.plist rm ~/Library/LaunchAgents/org.postgresql.postgres.plist
Find out which TERM is supported: ls /usr/share/terminfo/x this will give you a list of supported TERMs i.e. xterm xterm-xfree86 set the environment variable: export TERM=xterm-xfree86 and run screen: TERMINFO=’/usr/share/terminfo/’ screen
You can achieve this more universally by applying the following CSS: html, body { height: 100%; width: 100%; overflow: auto; } This allows your content, whatever it is, to become scrollable within body, but be aware that the scrolling context where scroll event is fired is now document.body, not window.
FWIW on OSX with El Capitan and homebrew, I did a: 1) I wasn’t sure if the El Capitan upgrade had broken something, so first I made sure I had the latest gettext: $ brew reinstall gettext Then I had to re-link by doing: $ brew unlink gettext && brew link gettext –force After that, … Read more
In theory this should work if you have Xcode4.3 installed (in /Applications): $ sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/ (And you’ve installed the optional command line tools)
Go to System Preferences > Mission Control and make sure that “Automatically rearrange spaces based on recent use” is not ticked.
Don’t post the entire thing! That’s too much! 90% of the time, the first error is enough… gevent/libevent.h:9:19: error: event.h: No such file or directory This means that the library which provides the event.h header is not installed. The library is called libevent (website). In general, compilation errors like these are a flaw in the … Read more