Re: [GENERAL] 8.3.3 Complie issue

2008-07-15 Thread Craig Ringer
Harvey, Allan AC wrote: I think we've seen this before: do you have utf8_and_euc_jis_2004.c in that directory? There seem to be some broken versions of tar out there that can't deal with extracting such a long file name from the distribution tarball. Thanks Tom, The c on the end was missing.

Re: [GENERAL] 8.3.3 Complie issue

2008-07-15 Thread Alvaro Herrera
Harvey, Allan AC wrote: Fixed that, how about this echo '{ global:' exports.list gawk '/^[^#]/ {printf %s;\n,$1}' exports.txt exports.list echo ' local: *; };' exports.list gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Winline -fno-strict-aliasing -fpic -shared

Re: [GENERAL] 8.3.3 Complie issue

2008-07-15 Thread Harvey, Allan AC
Old Slackware? If you really want to compile there, I think it should work by just removing the -Wl,--version-script param from the link line. Thanks Alvaro, Worked through them. Regression tests show all is OK, save for the handling of Infinity. Don't think that will be a problem 'cause I

[GENERAL] 8.3.3 Complie issue

2008-07-14 Thread Harvey, Allan AC
Hi All, Compile issue I was hoping someone might have a suggestion for: Did ./configure --prefix /removeExt2/pgsql8.3 make make[3]: Entering directory `/removeExt2/postgresql-8.3.3/src/backend/utils/mb/conversion_procs/utf8_and_euc_jis_2004' make[3]: *** No rule to make target

Re: [GENERAL] 8.3.3 Complie issue

2008-07-14 Thread Tom Lane
Harvey, Allan AC [EMAIL PROTECTED] writes: Compile issue I was hoping someone might have a suggestion for: make[3]: Entering directory `/removeExt2/postgresql-8.3.3/src/backend/utils/mb/conversion_procs/utf8_and_euc_jis_2004' make[3]: *** No rule to make target `utf8_and_euc_jis_2004.o',

Re: [GENERAL] 8.3.3 Complie issue

2008-07-14 Thread Alvaro Herrera
Tom Lane wrote: Harvey, Allan AC [EMAIL PROTECTED] writes: Compile issue I was hoping someone might have a suggestion for: make[3]: Entering directory `/removeExt2/postgresql-8.3.3/src/backend/utils/mb/conversion_procs/utf8_and_euc_jis_2004' make[3]: *** No rule to make target

Re: [GENERAL] 8.3.3 Complie issue

2008-07-14 Thread Harvey, Allan AC
I think we've seen this before: do you have utf8_and_euc_jis_2004.c in that directory? There seem to be some broken versions of tar out there that can't deal with extracting such a long file name from the distribution tarball. Thanks Tom, The c on the end was missing. Fixed that, how about