IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6706


Ignore:
Timestamp:
Mar 26, 2006, 2:51:06 PM (20 years ago)
Author:
eugene
Message:

moved to ChangeLog.txt

Location:
trunk/Ohana
Files:
5 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/Configure.in

    r5997 r6706  
    3434RANLIB-linux = ranlib
    3535RANLIB-lin64 = ranlib
     36RANLIB-linrh = ranlib
    3637RANLIB = $(RANLIB-$(ARCH))
  • trunk/Ohana/Makefile

    r6681 r6706  
    7171LIBS-linux = libohana libfits libdvo libkapa libdummy
    7272LIBS-lin64 = libohana libfits libdvo libkapa libdummy
     73LIBS-linrh = libohana libfits libdvo libkapa libdummy
    7374LIBS-sid   = libohana libfits libdvo libkapa libdummy
    7475LIBS-sol   = libohana libfits libdvo libkapa
  • trunk/Ohana/src/elixir/src/MachineOps.c

    r4772 r6706  
    410410
    411411  fprintf (stderr, "can't find this machine, process combination!\n");
    412   fprintf (stderr, "machine: %lx, process: %lx\n", (size_t) machine, (size_t) process);
     412  fprintf (stderr, "machine: %p process: %p\n", machine, process);
    413413  return;
    414414}
     
    437437
    438438  fprintf (stderr, "can't find an active process for this machine!\n");
    439   fprintf (stderr, "machine: %lx\n", (size_t) machine);
     439  fprintf (stderr, "machine: %p\n", machine);
    440440
    441441}
  • trunk/Ohana/src/imregister/detrend/args.detregister.c

    r2803 r6706  
    4040 
    4141  /* set optional label */
    42   descriptor[0].imageID = strcreate ("test");
     42  descriptor[0].imageID = NULL;
    4343  if ((N = get_argument (argc, argv, "-ID"))) {
    4444    remove_argument (N, &argc, argv);
  • trunk/Ohana/src/imregister/detrend/imdef.c

    r2803 r6706  
    135135  }
    136136
    137   /* set the image ID (!!!!) -- this is not being done.. */
    138   if (fits_scan (&header, "CRUNID",   "%s", 1, line)) {
    139     descriptor[0].imageID = strcreate (line);
     137  /* set the image ID (if not supplied) based on the camera header */
     138  if (descriptor[0].imageID == NULL) {
     139    if (fits_scan (&header, "CRUNID",   "%s", 1, line)) {
     140      descriptor[0].imageID = strcreate (line);
     141    }
    140142  }
     143  if (descriptor[0].imageID == NULL) {
     144    descriptor[0].imageID = strcreate ("test");
     145  } 
    141146 
    142147  return (TRUE);
  • trunk/Ohana/src/imregister/doc/Change.log

    r5410 r6706  
     1
     2imregister-1-4:
     3  dropped IMAGE_CATALOG from config
     4  fixed imageID if not in header
     5  changed mkdirhier to updated version (libohana 1.7)
    16
    27imregister-1-3:
Note: See TracChangeset for help on using the changeset viewer.