The following reply was made to PR os-solaris/1717; it has been noted by GNATS.

From: Dean Gaudet <[EMAIL PROTECTED]>
To: Suzy GOttesman <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: os-solaris/1717: can't successfully build - do I need to change 
something in configure that I'm missing?
Date: Sat, 21 Feb 1998 04:03:10 -0800 (PST)

 Try this patch.  If it doesn't work then something is wrong with your
 compiler.
 
 Dean
 
 Index: mod_include.c
 ===================================================================
 RCS file: /export/home/cvs/apache-1.2/src/mod_include.c,v
 retrieving revision 1.36
 retrieving revision 1.37
 diff -u -r1.36 -r1.37
 --- mod_include.c      1998/02/03 10:00:49     1.36
 +++ mod_include.c      1998/02/21 11:44:09     1.37
 @@ -1023,9 +1023,11 @@
                  }
                  else {
                      int l, x;
 -#if defined(BSD) && BSD > 199305
 +#if defined(BSD)
 +#if BSD > 199305
                      /* ap_snprintf can't handle %qd */
                      sprintf(tag, "%qd", finfo.st_size);
 +#endif
  #else
                      ap_snprintf(tag, sizeof(tag), "%ld", finfo.st_size);
  #endif
 

Reply via email to