Re: BUG??, fault in POSTMASTER when using GMAKE - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG??, fault in POSTMASTER when using GMAKE
Date
Msg-id 20910.987692918@sss.pgh.pa.us
Whole thread Raw
In response to BUG??, fault in POSTMASTER when using GMAKE  ("DECC" <info@decc.nl>)
Responses Re: BUG??, fault in POSTMASTER when using GMAKE
List pgsql-bugs
"DECC" <info@decc.nl> writes:
> gcc2 -O2 -pipe -m486 -Wall -Wmissing-prototypes -Wmissing-declarations -I..=
> /../.
> ./src/include   -c postmaster.c -o postmaster.o
> postmaster.c: In function `PostmasterMain':
> postmaster.c:406: `optreset' undeclared (first use this function)

Hm.  It looks like configure is testing whether it can link
  extern int optreset; optreset = 1;
but then postmaster.c tries to get away without the extern.  One or
the other of these things needs to change.  Peter, you got an opinion
about it?

BTW, info@decc.nl, what platform are you using?

            regards, tom lane

pgsql-bugs by date:

Previous
From: loganathan p
Date:
Subject:
Next
From: Peter Eisentraut
Date:
Subject: Re: BUG??, fault in POSTMASTER when using GMAKE