Thread: Postgress on HP-UX 11.00

Postgress on HP-UX 11.00

From
Ryan Bradetich
Date:
I had to make the following changes to get postgress to compile on HP-UX 11.00.

added to the configure script line 4511
  #include <math.h>

edited the configure script line 4515
char isinf();

replaced with:
/* char isinf(); */

edited the configure script line 4525
  isinf();

replaced with:
  double x;
  isinf(x);

# cd into the dir/src/backend/util/adt/float.c line 108
extern int isinf(double x);

replaced with:
#if 0
extern int isinf(double x);
#endif

-Ryan Bradetich
ryan_bradetich@hp.com


--
Ryan Bradetich
Hewlett-Packard
Boise, Idaho

Disclaimer:  This is not an official statement of Hewlett-Packard.
It is my personal opinion