Changeset 542 for CMT/HEAD/source


Ignore:
Timestamp:
Apr 5, 2010, 2:32:11 PM (14 years ago)
Author:
rybkin
Message:

See C.L. 429

Location:
CMT/HEAD/source
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/source/cmt_awk.cxx

    r533 r542  
    99#define popen _popen
    1010#define pclose _pclose
     11#include <stdlib.h>
     12#define PATH_MAX _MAX_PATH
    1113#endif
    1214
  • CMT/HEAD/source/cmt_pattern.cxx

    r537 r542  
    844844  if (p == 0)
    845845    {
    846       if (Cmt::get_current_access () == DeveloperMode)
     846      if (Cmt::get_current_access () == DeveloperMode &&
     847          Cmt::get_recursive ())
    847848        CmtMessage::warning (CmtError::get_error_name (CmtError::pattern_not_found) +
    848849                             ": " + name +
  • CMT/HEAD/source/cmt_system.cxx

    r538 r542  
    2929#define stat _stat
    3030#define WEXITSTATUS(w) (w)
     31#include <stdlib.h>
     32#define PATH_MAX _MAX_PATH
    3133
    3234#else
     
    24482450    }
    24492451
    2450   bool prev_fail = ferror (stream);
    2451   bool fclose_fail = fclose (stream);
     2452  int prev_fail = ferror (stream);
     2453  int fclose_fail = fclose (stream);
     2454//   bool prev_fail = ferror (stream);
     2455//   bool fclose_fail = fclose (stream);
    24522456
    24532457  if (prev_fail || fclose_fail)
Note: See TracChangeset for help on using the changeset viewer.