IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 34004


Ignore:
Timestamp:
Jun 11, 2012, 1:27:05 PM (14 years ago)
Author:
eugene
Message:

fix undefined or unused variables; temporarily add Wall, but not Werror

Location:
branches/eam_branches/ipp-20120601/Ohana
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120601/Ohana/configure.tcsh

    r33995 r34004  
    203203  set CPPFLAGS = ""
    204204endif 
    205 if ($pedantic) set CPPFLAGS = "$CPPFLAGS -Wall -Werror"
     205## XXX temporary if ($pedantic) set CPPFLAGS = "$CPPFLAGS -Wall -Werror"
     206if ($pedantic) set CPPFLAGS = "$CPPFLAGS -Wall"
    206207if ($memcheck) set CPPFLAGS = "$CPPFLAGS -DOHANA_MEMORY"
    207208
     
    215216# but this may be hiding an underlying link problem
    216217set LDFLAGS = "$LDFLAGS -Wl,--no-as-needed"
     218## (need to make this optional like in IPP m4 stdopts)
    217219
    218220set syslibpath = "/lib /usr/lib /usr/X11R6/lib /usr/local/lib"
  • branches/eam_branches/ipp-20120601/Ohana/src/opihi/dvo/cmd.c

    r27435 r34004  
    88  int Npts, NPTS, mode[3];
    99  int Nsecfilt, KeepNulls;
    10   void *Signal;
    1110
    1211  PhotCode *code[3];
     
    6160
    6261  // grab data from all selected sky regions
    63   Signal = signal (SIGINT, handle_interrupt);
     62  // void *Signal = signal (SIGINT, handle_interrupt);
     63  signal (SIGINT, handle_interrupt);
    6464  interrupt = FALSE;
    6565
  • branches/eam_branches/ipp-20120601/Ohana/src/opihi/dvo/fitsed.c

    r34001 r34004  
    8080  /* load photcode information */
    8181  if (!InitPhotcodes ()) goto escape;
    82   // int Nsecfilt = GetPhotcodeNsecfilt ();
    8382
    8483  /* interpret command-line options */
Note: See TracChangeset for help on using the changeset viewer.