Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Install PCRE Development Headers on Mac OSX

I just upgraded my MacBook Pro to Mavericks and my local Ruby on Rails development environment isn't running straight off the bat, when I visit localhost I see It works! and remembered I needed to start Phusion Passenger, so when I run passenger start it checks all the prerequisites and fails when it gets to the PCRE Development Headers:

 * Checking for PCRE development headers...
    Found: no

It tells me to go to http://www.pcre.org/ to download them so I downloaded 8.33 from here which went to my Downloads folder, so I unzipped it, cd'd to the folder and ran:

./configure
make
make install

Then cd'd back to my rails app directory on my Desktop and re-ran passenger start but it's still the same. Tried a new Terminal window but that didn't make any difference.

I must have done this before to get my dev environment working but can't seem to solve it this time.

I also tried brew install pcre but it says Warning: pcre-8.33 already installed.

like image 866
martincarlin87 Avatar asked Oct 23 '13 11:10

martincarlin87


1 Answers

Reinstalling OS X Developer Tools did not work for me so I recommend

brew install pcre

Also you can do

brew install passenger

Which will install all needed requirements if additional missing.

like image 161
Haris Krajina Avatar answered Sep 20 '22 11:09

Haris Krajina