IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Opened 19 years ago

Closed 19 years ago

#997 closed defect (fixed)

conflicting declaration and definition of psphotImageBackgroundCellHistogram() when HAVE_KAPA is false

Reported by: jester@… Owned by: eugene
Priority: high Milestone:
Component: psphot Version: 2.3
Severity: critical Keywords:
Cc:

Description

psphot/src/psphot.h declares
bool psphotImageBackgroundCellHistogram (psVector *values, float mean, float sigma, int ix, int iy);

psphot/src/psphotDiagnosticPlots defines this as
bool psphotImageBackgroundCellHistogram (psVector *values) { return true; }
when HAVE_KAPA is false (line 185)

It needs to be
bool psphotImageBackgroundCellHistogram (psVector *values, float mean, float sigma, int ix, int iy) { return true; }

This problem appears to appear only on Macs, but I think that's only because HAVE_KAPA is false. See bug 892
http://pan-starrs.ifa.hawaii.edu/bugzilla/show_bug.cgi?id=892
for why HAVE_KAPA = false seems to be the way forward on a Mac.

Change History (1)

comment:1 by Paul Price, 19 years ago

Cc: price@… added
Resolution: fixed
Status: newclosed

Fixed in CVS head.

Note: See TracTickets for help on using tickets.