| From: | David Sauer <davids(at)orfinet(dot)cz> |
|---|---|
| To: | pgsql-hackers(at)postgresql(dot)org |
| Subject: | I can't compile cvs snapshot ... |
| Date: | 1999-05-25 19:48:23 |
| Message-ID: | m2d7zpgcc8.fsf@orfinet.cz |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
The problem is with file conv.c in backend/utils/mb/
....
big52mic(unsigned char *big5, unsigned char *p, int len)
unsigned short c1;
unsigned short big5buf,
cnsBuf;
unsigned char lc;
char bogusBuf[2];
int i;
while (len > 0 && (c1 = *big5++))
{
if (c1 <= 0x007f U)
^^^^ my egcs 1.1.2 on linux(rh6.0) doesn't
accept this space. Should be
(probably) 0x007fU
......
The same problem repeats on some more places.
--
* David Sauer, student of Czech Technical University
* electronic mail: davids(at)orfinet(dot)cz (mime compatible)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bruce Momjian | 1999-05-25 19:52:57 | Re: [HACKERS] I can't compile cvs snapshot ... |
| Previous Message | Jan Wieck | 1999-05-25 19:22:51 | Re: [HACKERS] INSERT INTO view means what exactly? |