Faking 10.4U SDK for MacPorts
Since 10.5.3 a lot of software installed with macports has broken. One way to get it working again can be to reinstall with the option +universal, eg:
sudo port install erlang +universal
Unfortunately, if, like me, when you installed the Developer tools on 10.5, you unchecked the 10.4U SDK option because you didn’t think you needed it, you might see something like this:
$ sudo port install erlang +universal Error: Error executing universal: MacOS X 10.4 universal SDK is not installed (are we running on 10.3? did you forget to install it?) and building with +universal will very likely fail Error: Unable to open port: Error evaluating variants
The good news is you don’t need to go find your disk, you don’t actually need the 10.4 SDK if you have the 10.5 one installed .. and you might not even need that. But it’s hardwired to check for it, so fake it out like this:
$ sudo touch /Developer/SDKs/MacOSX10.4u.sdk
Now it will work.
$ sudo port install erlang +universal ---> Fetching erlang ---> Verifying checksum(s) for erlang ---> Extracting erlang ---> Applying patches to erlang ---> Configuring erlang ---> Building erlang with target all ---> Staging erlang into destroot ---> Installing erlang R12B-2_1+universal ---> Activating erlang R12B-2_1+universal Error: Target org.macports.activate returned: Image error: Another version of this port (erlang @R12B-2_0) is already active. Error: Status 1 encountered during processing. $ sudo port deactivate erlang @R12B-2_0 Password: ---> Deactivating erlang R12B-2_0 $ sudo port activate erlang @R12B-2_1+universal ---> Activating erlang R12B-2_1+universal
God knows why it wants +universal but hey, works.
June 12th, 2008 at 2:08 am
This kind of thing is why I don’t like using broken package management “solutions” (ie. all package management solutions on the Mac). I was a Fink user in the very, very early days, but for the last five years or so I’ve done absolutely everything “by hand” and my system is unsmirched by any package management system.
In my experience, the vast majority of software is a simple “./configure && make && sudo make install” away, and you avoid a lot of the headaches that these package management systems inflict.
June 12th, 2008 at 2:23 am
I have a few criteria I use to make that decision (package management vs. custom install):
1. Which is more convenient, ie saves time
2. Which provides easier maintainability and upgrades
3. Which provides me with the environment I prefer
4. In the case of servers, which is likely to be more secure
For me, most of the time, that means package management. Erlang breaking with 10.5.3 was strange, annoying, but in the end a pretty rare thing. In my experience, macports has saved me more time than it’s cost - much more time. You’re right that it’s not very good, but it limps along, which is all it needs to do to be preferable to custom installs.
Furthermore, I periodically wipe my entire stack on the dev machine - whether it’s a hard drive upgrade or just feel like cleaning up, macports makes it much easier for me to restore. All I need to do to build again from scratch is output a list of my installs, nuke my /opt/local, and feed macports back that list - then walk away for an hour. I come back and it’s good as new.
On the server it’s a different matter. I rely heavily on RH to keep up to date on security and stability issues, so I think very carefully about deviating from their “golden path”.
I was going to call you out on your inconsistent approach to package management on the desktop and the server - but I can’t really, RH’s is so superior you can’t really compare. Imagine if packages just “stopped working” after a minor RH system upgrade! They’d be lynched. Macports isn’t even official Apple software, they don’t have anywhere near as much to lose if they screw up, and it kind of shows.
June 14th, 2008 at 4:39 am
Call me out indeed. I should have clarified that I was talking about Mac OS X and only Mac OS X. As you point out, on the Red Hat server it is a totally different ball-game.