mark david mcCreary
2007-Feb-18 16:13 UTC
[Pkg-exim4-users] Notes on Compiling Exim with Domainkeys the Debian Way
fyi - Here''s my notes on compiling a custom exim for using DomainKeys. Thanks to everybody that helped me get this far. mark apt-get --assume-yes install build-essential apt-get --assume-yes install dpkg-dev apt-get --assume-yes install fakeroot apt-get --assume-yes install debhelper apt-get --assume-yes install devscripts apt-get build-dep exim4 cd /usr/local/src wget http://www.kibibyte.se/download/debian/libdomainkeys0_0.68-1_i386.deb wget http://www.kibibyte.se/download/debian/libdomainkeys0-dev_0.68-1_i386.deb dpkg -i /usr/local/src/libdomainkeys0_0.68-1_i386.deb dpkg -i /usr/local/src/libdomainkeys0-dev_0.68-1_i386.deb apt-get source --download-only exim4 dpkg-source -x exim4_4.63-17.dsc cd /usr/local/src/exim4-4.63 fakeroot debian/rules unpack-configs cp /usr/local/bin/Makefile_Etch_Domainkeys /usr/local/src/exim4-4.63/EDITME.exim4-custom # # the above file is the same as the normal Exim Local Makefile, except # #EXPERIMENTAL_DOMAINKEYS=yes #LDFLAGS += -ldomainkeys fakeroot debian/rules buildbasepackages=no extradaemonpackages=exim4-daemon-custom binary dpkg --force-depends --remove exim4-daemon-light dpkg --install /usr/local/src/exim4-daemon-custom_4.63-17_i386.deb