Re: [exim] exim build errors - exim-4.80.1

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Phil Pennock
日付:  
To: Prashanth Katuri
CC: exim-users@exim.org
題目: Re: [exim] exim build errors - exim-4.80.1
On 2013-06-06 at 10:00 +0000, Prashanth Katuri wrote:
> Phil,
>
> Thank you for the reply.
>
> I got the below error during make when added the below content in ldap.c
>
> {
>    DEBUG(D_lookup) debug_printf("%sbinding with user=%s password=%s\n",
>      (lcp->bound)? "re-" : "", user, password); -#ifdef LDAP_OPT_X_TLS
> +#if defined(LDAP_OPT_X_TLS) && !defined(LDAP_LIB_SOLARIS)
>    /* The Oracle LDAP libraries (LDAP_LIB_TYPE=SOLARIS) don't support this: */
>    if (eldap_start_tls)
>      {


The change supplied was in the form of a "unified diff"; the lines
starting "-" are to be removed, the lines starting "+" are to be added.

The required change is to be made to one line, _replacing_ the #ifdef
with the slightly more complicated "#if defined(...) && !defined(...)"
logic.

-Phil