First we need to make the binaries so lets get that out of the way now.
in terminal execute the following commands:
______________________________________________________________
su
setenv MACOSX_DEPLOYMENT_TARGET 10.3
setenv NEXT_ROOT /Developer/SDKs/MacOSX10.3.9MOD.sdk
setenv C_INCLUDE_PATH /Developer/SDKs/MacOSX10.3.9MOD.sdk/usr/include
gcc_select 3.3
cd /SourceCache/clamav-1
mkdir -p /CLAMAV_BUILD/Release
make ______________________________________________________________
To install for distribution you would issue the "make install" command and the binaries will be installed in "/tmp/clamav/Release/usr"
Remember that if you wish to target a system lower than 10.3.9 then you will also need to make a "Makefile" for libbz2 as it isn't included in the OS, just follow the same principles used to make the MacOSX10.3.9MOD.sdk in say your 10.3.0 SDK.
Also remember that you will need to update your modified build SDK with dependent libraries and header files
If you want to skip the distribution and just install the app on the local machine then you would first cd to "/tmp/clamav/Build" and then issue the "make install" command.
______________________________________________________________
In Part II, I provided 2 makefiles in case you wanted to build a package installer for ditribution of clamav for installation on other systems and to show you that this method can be used with pretty much any source package cause you now have two working examples.
As a note, clamav and gmp are considered a ToolType "Libraries", I've also built PHP with this method (see http://www.daleenterprise.com/ info.php) but I had to make it a ToolType "Services" so if the code wont build when it did in 10.3.x, change the ToolType and remember to update your SDK and keep a text file of the updates so you know what you've added and if a project you wish to distribute has a lib on the list you must include it in the distribution package.
______________________________________________________________
I've also used this concept to build postfix 2.1.5 with the additional lookup table options (I'm going for mysql based virtual users/domain e-mail for easier management without giving up any Apple supplied functionality) but the "Makefile" is considerably more complex.
Here's the postconf -m output of the new build:
daleenterprise:/tmp/postfix/Release root# usr/sbin/postconf -m static sdbm cidr pcre regexp environ mysql proxy ldap btree netinfo unix hash daleenterprise:/tmp/postfix/Release root#
Here's the currently installed config:
daleenterprise:/tmp/postfix/Release root# postconf -m static sdbm cidr regexp environ proxy btree unix hash daleenterprise:/tmp/postfix/Release root#
_______________________________________________ http://lurker.clamav.net/list/clamav-users.html