wiki:exim

Version 3 (modified by Julien Lecomte, 16 years ago) ( diff )

Adding OpenSSL TLS functionality

Exim

Adding iconv functionality

From LFS 6.3 (chapter 6.9: Glibc 2.5.1): Glibc provides an iconv() implementation and can convert from/to Unicode, therefore libiconv is not required on an LFS system.

sed -e '/^\([# ]*\|\)HAVE_ICONV.*$/d' \
  -i Local/Makefile && \
echo "HAVE_ICONV=yes" >> Local/Makefile

Adding OpenSSL TLS functionality

sed -e '/^\([# ]*\|\)SUPPORT_TLS.*$/d' \
    -e '/^\([# ]*\|\)TLS_LIBS.*$/d' \
  -i Local/Makefile && \
echo "SUPPORT_TLS=yes" >> Local/Makefile && \
echo "TLS_LIBS=-lssl -lcrypto" >> Local/Makefile

Up
Top

Note: See TracWiki for help on using the wiki.