| Article: |
PHP 4.3 and Mac OS X | |
| Subject: | Location of fink packages | |
| Date: | 2003-01-21 13:56:11 | |
| From: | trachtenberga | |
|
Response to: Location of fink packages
|
||
|
You'll only find the cURL application in /sw/bin/. (Well, also curl-config.) However, PHP uses other cURL files. They're installed by fink in /sw/lib, /sw/include, and other locations off of the /sw root.
|
||
Showing messages 1 through 1 of 1.
-
Location of fink packages
2003-02-28 19:04:15 tychay [View]



If you compile curl yourself and want to write over Apple's installation, use
curl --remote-name http://curl.hax.se/download/curl-7.10.3.tar.bz2
bzip2 -dc curl-7.10.3.tar.bz2 | gnutar --extract
pushd curl-7.10.3
./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-static --enable-shared --with-ssl=/usr --with-zlib=/usr"
make
sudo make install
popd
rm -rf curl-7.10.3
(i think that will work). BTW, you may want to run Disk Repair ", Repair Disk Permissions after the install (of curl and PHP both!) to change the binaries/libraries/etc to be writeable by group and belong to staff. :-)
Take care,
terry chay
tychay at php dot net