How can I install php5 curl module or any other php5 modules in mac osx snow leopard?
- CURL is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, TFTP, HTTP, HTTPS, TELNET, DICT, FILE and LDAP. Curl supports SSL.
- Curl Web Services Development Kit For Mac Publisher's description. From dmccrae, hokada, mgordon-curl, wbardwel. Curl Web Services Development Kit - a Curl Open Source project The WSDK library. Curl Web Services Development Kit - a Curl Open Source project The WSDK library provides components necessary for building Curl applications that make use of web services.
In Ubuntu 9.04 I am using:
Alternatives to cURL for Mac with any license Wget GNU Wget is a free software package for retrieving files using HTTP(S) and FTP, the most widely-used Internet protocols.
I already tried Googling but can't find some solution.
Drew Noakes1 Answer
Snippet Tool For Mac
I would install it via macports. Once you've installed mac ports, you can use it to build and then install php5 curl with the command
I was able to determine what the mac ports package name was by using the ports search function:
Edit: You must have Apple Developer tools (X Code) installed on your machine for mac ports to work. X Code can be downloaded free from Apple. It also should be on your second Snow Leopard installation disc.
As a developer working on Apple machines, I find ports indispensable. It's rare that I get through an entire project without relying on it for some dependency, especially when I am using a lot of open source libraries. It's worth spending some time looking around and seeing what else is in there.
Aftermathew