
-- 1 -- Download the POCO Economy Edition tar.bz2 tarball
from http://pocoproject.org/poco/download/

-- 2 -- Change build/config/Darwin
Replace the build/config/Darwin file with either of my modded ones (PPC or INTEL)

-- 3 -- then in the poco folder on the command line
./configure --configuration=Darwin 
make

Do this for both PPC and Intel - you might get a couple of ld errors with some of the example code - but your lib/ folder should have the compiled libraries. 

-- 4 -- copy the lib/i386 and lib/ppc folders to another location and add a empty lib folder.
This is where we are going to turn the ppc and intel libs into a universal lib

On my Desktop I have:

poco-universal/
    i386/  -- contains our intel compiled libs
    ppc/   -- contains our ppc compiled libs
    lib/   -- empty for now

-- 5 -- change directory into the empty lib/ folder 
cd Desktop/poco-universal/lib/

-- 6 -- join the libs together to make a universal binary
lipo -create ../i386/libCppUnit.a ../ppc/libCppUnit.a -output libCppUnit.a
lipo -create ../i386/libPocoFoundation.a ../ppc/libPocoFoundation.a -output libPocoFoundation.a
lipo -create ../i386/libPocoNet.a ../ppc/libPocoNet.a -output libPocoNet.a
lipo -create ../i386/libPocoUtil.a ../ppc/libPocoUtil.a -output libPocoUtil.a
lipo -create ../i386/libPocoXML.a ../ppc/libPocoXML.a -output libPocoXML.a

--- repeat with debug libraries if needed

