IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 23, 2004, 7:32:47 AM (22 years ago)
Author:
eugene
Message:

two important modifications:
1) added code for converting between mode/type names and codes (ie T_FLAT <-> 'flat')

this is synchronized with removing the same come from opihi.v2
(imsearch/detrend) and with major cleanup in the imregister
function. The imregister functions could not be built with -Wall
-Werror without this fix: they had been using static typename,
typecode, etc entries from imregister.h, which resulted in
complaints about unused variables.

2) added a new type 'e_time' to replace all 'unsigned long int'

previously used to store time values. the problem here is that the
database tables require a fixed byte size value regardless of
platform. the 64bit machines use 8 bytes for long int and for
time_t. isolating the e_time variable cleans this up. eventually
i'll need to replace all instances of the unsigned long int used as
a time variable with e_time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libohana/Makefile

    r2510 r2797  
    2828$(SRC)/Fread.$(ARCH).o          $(SRC)/glockfile.$(ARCH).o       \
    2929$(SRC)/LoadPhotcodes.$(ARCH).o  $(SRC)/photfits.$(ARCH).o        \
    30 $(SRC)/phot_catalog.$(ARCH).o
     30$(SRC)/phot_catalog.$(ARCH).o   $(SRC)/imreg_datatypes.$(ARCH).o
    3131
    3232$(DESTLIB)/libohana.a: $(LIB)/libohana.$(ARCH).a
Note: See TracChangeset for help on using the changeset viewer.