ImageMagick and OS X Lion trouble
On 10.8 I solved this issue with: brew install libtool –universal brew link libtool If you don’t know what brew is, visit https://github.com/mxcl/homebrew and its wiki.
On 10.8 I solved this issue with: brew install libtool –universal brew link libtool If you don’t know what brew is, visit https://github.com/mxcl/homebrew and its wiki.
libmemcached may also be installed using Homebrew. brew install libmemcached After that, pip install pylibmc worked for me without needing to specify any additional arguments.
First, you might need to edit your system’s PATH sudo vi /etc/paths Add 2 following lines: /opt/local/bin /opt/local/sbin Reboot your terminal
The default install location is /usr/local, so add this to your ~/.bash_profile file: export PATH=$PATH:/usr/local/git/bin/ Then run source ~/.bash_profile in Terminal.
From the Apple Developer Forum (account required): “The compiler and linker are capable of using features and performing optimizations that do not work on older OS versions. -mmacosx-version-min tells the tools what OS versions you need to work with, so the tools can disable optimizations that won’t run on those OS versions. If you need … Read more
This is a chicken and the egg problem. The table needs to know the row height because that determines where a given view will lie. But you want a view to already be around so you can use it to figure out the row height. So, which comes first? The answer is to keep an … Read more
I suggest you take a look at rvm. You can then set it as default with rvm use 1.9.3 –default But if you are happy with your homebrew install. Then just change the precedence of directories in the PATH Here is my /etc/paths # homebrews should always take precedence /usr/local/bin # the default stack /usr/bin … Read more
I think he matter is Lion handles .local TLD differently because it’s reserved for some Multicast DNS features (used by Bonjour). The only way i found to solve this issue is using a different TLD for development hosts (ie: .dev). It works fine for me, hope it’s gonna be helpful to others!
I could not redirect the Perl based solution to a file for some reason so I kept searching and found a bash only way to do this: ping www.google.fr | while read pong; do echo “$(date): $pong”; done Wed Jun 26 13:09:23 CEST 2013: PING www.google.fr (173.194.40.56) 56(84) bytes of data. Wed Jun 26 13:09:23 … Read more
Open a good text editor (I’d recommend TextMate, but the free TextWrangler or vi or nano will do too), and open: /etc/apache2/httpd.conf Find the line: “#LoadModule php5_module libexec/apache2/libphp5.so” And uncomment it (remove the #). Download and install the latest MySQL version from mysql.com. Choose the x86_64 version for Intel (unless your Intel Mac is the … Read more