Thanks to the attached patch from the code posted to the list earlier
Sablot.050 on both OpenServer 5.0.X (OSR) and UnixWare 7.1.X (UW).  I hope
this patch will make it in to the distribution.  BTW would you like
binaries of both platforms?  If yes where should I ftp them?

Thanks,

--
Boyd Gerber <[EMAIL PROTECTED]>
ZENEZ   3748 Valley Forge Road, Magna Utah  84044
Office 801-250-0795 FAX 801-250-7975
*** utf8.cpp.org Tue Dec 19 06:39:12 2000
--- utf8.cpp Thu Dec 28 18:31:53 2000
***************
*** 265,271 ****
      // so we cast any time __restrict isn't known (ie. when not using egcs >= 1.2)
      // but RH7 problem probably persists, will have to fork some more if so
      while (inbytesleft && 
!         iconv(cd, 
  #ifdef UTF8_ICONV_CAST_OK
          (char**)(&src),
  #else
--- 265,271 ----
      // so we cast any time __restrict isn't known (ie. when not using egcs >= 1.2)
      // but RH7 problem probably persists, will have to fork some more if so
      while (inbytesleft && 
!         iconv(cd,
  #ifdef UTF8_ICONV_CAST_OK
          (char**)(&src),
  #else
***************
*** 269,275 ****
  #ifdef UTF8_ICONV_CAST_OK
          (char**)(&src),
  #else
!         &src, 
  #endif
          &inbytesleft, &outbuf, &outbytesleft) != -1);
      iconv_close (cd);
--- 269,275 ----
  #ifdef UTF8_ICONV_CAST_OK
          (char**)(&src),
  #else
!         (char **)(&src),
  #endif
          &inbytesleft, &outbuf, &outbytesleft) != -1);
      iconv_close (cd);

Reply via email to