Re: [HACKERS] where to put NO_MKTIME_BEFORE_1970?

2002-08-17 Thread Peter Eisentraut
Tom Lane writes: Really what we need is a test on the glibc version, which seems a bit difficult. Well, it's not that difficult to figure out the version (run /lib/libc.so.6), but I'm afraid the version is not going to tell you anything. For instance, the libc versions that are claimed to

Re: [HACKERS] where to put NO_MKTIME_BEFORE_1970?

2002-08-16 Thread Joe Conway
Tom Lane wrote: Joe Conway [EMAIL PROTECTED] writes: I'm running Red Hat 7.3 at home. For the fun of it, I put: #define NO_MKTIME_BEFORE_1970 But I'm still getting the 1970 regression test failures. What else do I need to do? I'd assume you need to select different regression

Re: [HACKERS] where to put NO_MKTIME_BEFORE_1970?

2002-08-16 Thread Tom Lane
Joe Conway [EMAIL PROTECTED] writes: Is /src/include/port/linux.h the correct place to put this or should something more specific to Red Hat 7.3 be used (and if so, any ideas about how to detect that Red Hat 7.3 is being used)? Really what we need is a test on the glibc version, which seems

[HACKERS] where to put NO_MKTIME_BEFORE_1970?

2002-08-15 Thread Joe Conway
I'm running Red Hat 7.3 at home. For the fun of it, I put: #define NO_MKTIME_BEFORE_1970 into /src/include/port/linux.h and then did: make clean make all make install initdb make installcheck But I'm still getting the 1970 regression test failures. What else do I need to do? Joe