I tried installing readline (following a how-to for 1.8.4 on OSX) and I get the following: install: you may need to run ldconfig I do not find ldconfig anywhere. Has anyone else gotten this message? Robert
on 2006-01-12 03:13
on 2006-01-12 03:19
Robert Hicks wrote: >I tried installing readline (following a how-to for 1.8.4 on OSX) and I >get the following: > >install: you may need to run ldconfig > >I do not find ldconfig anywhere. Has anyone else gotten this message? > >Robert > > Odds are if you don't have it on the system, you don't need to run it. Try and see. I might be horribly mistaken, but I _think_ running ldconfig serves for the system to know there's a new dynamic library around the place, and it's necessary on some Unixen. Might want to check how OSX handles dynamic libraries... David Vallner
on 2006-01-13 01:54
On 1/11/06, Robert Hicks <sigzero@gmail.com> wrote: > I tried installing readline (following a how-to for 1.8.4 on OSX) and I > get the following: > > install: you may need to run ldconfig > > I do not find ldconfig anywhere. Has anyone else gotten this message? > > Robert I'd suggest that you go to http://darwinports.org/ and install darwinports, and then use darwinports to install ruby. that port will automatically install the correct version of readline for you, and compile everything correctly. Btw, do you have the DeveloperTools installed on your Mac? Do you have a /Developer directory, for instance? If you have not, then you would need to install the developers tools first. (you would also need to install those if you were to use darwinports).
on 2006-01-13 02:48
On Jan 12, 2006, at 7:38 PM, Robert Hicks wrote:
> I have the devtools...yes.
Does this series of steps work for you?
curl ftp://ftp.gnu.org/gnu/readline/readline-5.0.tar.gz | tar xfz -
cd readline-5.0
./configure
cd shlib
sed -e 's/-dynamic/-dynamiclib/' Makefile > Makefile.good
mv Makefile.good Makefile
cd ..
make && sudo make install
sudo rm /usr/lib/libreadline*
sudo ln -s /usr/local/lib/libreadline* /usr/lib/
I got those from here, just FYI:
http://tech.rufy.com/articles/2005/05/01/complete-fix-for-ruby-on-mac-
os-x-10-4-tiger
James Edward Gray II
on 2006-01-13 03:06
Someone suggested installing libreadline in /usr/lib and linking it back to /usr/local. This is a "Bad Idea" (TM). since you would be messing with the core operating system and its libraries. You're much better doing it either: 1. Using Darwin Ports (I personally prefer it over Fink) at www.darwinports.org 2. Roll your own from source code (ftp.gnu.org). You can even use FTPFS which is built into the Finder to make browsing easy. By default the GNU code installs in /usr/local, and the Darwin Ports installs in /opt/local. Both stay away from your core OS which is good. If you start messing with the core OS, you must be careful you absolutely know what you are doing and how to back it out in case of trouble. The more changes you make, the more difficult this is. Best to just leave it alone. If you make changes there, you could easily end up affecting upgrades, patches and produce other unknown or unwanted side-effects. Cheers, Mike -- Mobile: +81-80-3202-2599 God is love. => Love is blind. Ray Charles is blind. => Ray Charles is God.
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.