********> bugfix.35 Author: Bill Ross Date: Mar 8 99 Programs: Leap Severity: moderate Description: On SGI IRIX 6.x, floating-point numbers printed to the screen and to the log are all 0.0. Technical note: Switching from 'varargs' to 'stdarg' solves it. Fix: make the following change to leap/src/leap/Imakefile (note that this is the Imakefile given in bugfix.33): ------------------------------------------------------------------------- *** OLD Imakefile --- NEW Imakefile *************** *** 242,248 **** M4Cmd = m4 -B50000 NmCmd = nm LsCmd = ls -o | $(LsFilter) ! CCOPTIONS = -cckr -n32 -Wf,-XNh2000 X__LIB = -L$(PROJECTROOT)/lib32 # define X__LIB CDEBUGFLAGS = $(LEAP_FLAGS) -cckr -w -Wf,-XNl16386 --- 242,248 ---- M4Cmd = m4 -B50000 NmCmd = nm LsCmd = ls -o | $(LsFilter) ! CCOPTIONS = -cckr -n32 -Wf,-XNh2000 -DSTDARGS X__LIB = -L$(PROJECTROOT)/lib32 # define X__LIB CDEBUGFLAGS = $(LEAP_FLAGS) -cckr -w -Wf,-XNl16386 -------------------------------------------------------------------------