Re: [Exim] Exim 4.23 released

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Philip Hazel
Datum:  
To: gARetH baBB, Test, James
CC: exim-users
Betreff: Re: [Exim] Exim 4.23 released
On Tue, 16 Sep 2003, gARetH baBB wrote:
On Tue, 16 Sep 2003, Test, James wrote:

> gcc -c -O -I.    globals.c
> globals.c:464: `ISO' undeclared here (not in a function)
> make[1]: *** [globals.o] Error 1


Oops. Fixing a problem in the 4.22 distribution has caused this bug to
surface. Sorry about that; this one slipped by my tests. Below is a patch
that fixes it. Or, as one of you did, you can just comment out the
setting of HEADERS_CHARSETin your Local/Makefile.

Looks like I'll have to bring out 4.24 fairly soon. :-( But I'll wait a
few days just in case anything else turns up.

--
Philip Hazel            University of Cambridge Computing Service,
ph10@???      Cambridge, England. Phone: +44 1223 334714.




*** exim-4.23/src/buildconfig.c     Mon Sep 15 11:47:56 2003
--- buildconfig.c    Tue Sep 16 14:00:10 2003
***************
*** 560,568 ****
          fprintf(new, "\"%s\"\n", value);
          }


!       /* Timezone values get quoted */


!       else if (strcmp(name, "TIMEZONE_DEFAULT") == 0)
          fprintf(new, "\"%s\"\n", value);


        /* For others, quote any paths and don't quote anything else */
--- 560,569 ----
          fprintf(new, "\"%s\"\n", value);
          }


!       /* Timezone values and HEADERS_CHARSET get quoted */


!       else if (strcmp(name, "TIMEZONE_DEFAULT") == 0||
!                strcmp(name, "HEADERS_CHARSET") == 0)
          fprintf(new, "\"%s\"\n", value);


        /* For others, quote any paths and don't quote anything else */