Print this page
make: remove SCCS ident stuff

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/make/include/mk/defs.h
          +++ new/usr/src/cmd/make/include/mk/defs.h
↓ open down ↓ 16 lines elided ↑ open up ↑
  17   17   * If applicable, add the following below this CDDL HEADER, with the
  18   18   * fields enclosed by brackets "[]" replaced with your own identifying
  19   19   * information: Portions Copyright [yyyy] [name of copyright owner]
  20   20   *
  21   21   * CDDL HEADER END
  22   22   */
  23   23  /*
  24   24   * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  25   25   * Use is subject to license terms.
  26   26   */
  27      -/*
  28      - * @(#)defs.h 1.61 06/12/12
  29      - */
  30      -
  31      -#pragma ident   "@(#)defs.h     1.61    06/12/12"
  32   27  
  33   28  /*
  34   29   * Included files
  35   30   */
  36   31  #ifdef DISTRIBUTED
  37   32  #       include <dm/Avo_AcknowledgeMsg.h>
  38   33  #       include <dm/Avo_DoJobMsg.h>
  39   34  #       include <dm/Avo_JobResultMsg.h>
  40   35  #endif
  41   36  
↓ open down ↓ 29 lines elided ↑ open up ↑
  71   66                                          x++;                    \
  72   67                          }
  73   68  
  74   69  #define PMAKE_DEF_MAX_JOBS      2       /* Default number of parallel jobs. */
  75   70  
  76   71  #define OUT_OF_DATE(a,b) \
  77   72          (((a) < (b)) || (((a) == file_doesnt_exist) && ((b) == file_doesnt_exist)))
  78   73  
  79   74  #define OUT_OF_DATE_SEC(a,b) \
  80   75          (((a).tv_sec < (b).tv_sec) || (((a).tv_sec == file_doesnt_exist.tv_sec) && ((b).tv_sec == file_doesnt_exist.tv_sec)))
  81      -        
       76 +
  82   77  #define SETVAR(name, value, append) \
  83   78                                  setvar_daemon(name, value, append, no_daemon, \
  84   79                                                true, debug_level)
  85   80  #ifdef SUN5_0
  86   81  #define MAX(a,b)                (((a)>(b))?(a):(b))
  87   82  /*
  88   83   * New feature added to SUN5_0 make,  invoke the vanilla svr4 make when
  89   84   * the USE_SVR4_MAKE environment variable is set.
  90   85   */
  91   86  #define SVR4_MAKE               "/usr/ccs/lib/svr4.make"
↓ open down ↓ 68 lines elided ↑ open up ↑
 160  155          txt1_mode,
 161  156          txt2_mode,
 162  157          html1_mode
 163  158  } DMake_output_mode;
 164  159  
 165  160  struct _Recursive_make {
 166  161          struct _Recursive_make  *next;  /* Linked list */
 167  162          wchar_t                 *target;/* Name of target */
 168  163          wchar_t                 *oldline;/* Original line in .nse_depinfo */
 169  164          wchar_t                 *newline;/* New line in .nse_depinfo */
 170      -        wchar_t                 *cond_macrostring; 
 171      -                                        /* string built from value of 
 172      -                                         * conditional macros used by 
      165 +        wchar_t                 *cond_macrostring;
      166 +                                        /* string built from value of
      167 +                                         * conditional macros used by
 173  168                                           * this target
 174  169                                           */
 175  170          Boolean                 removed;/* This target is no longer recursive*/
 176  171  };
 177  172  
 178  173  struct _Dyntarget {
 179  174          struct _Dyntarget       *next;
 180  175          struct _Name            *name;
 181  176  };
 182  177  
↓ open down ↓ 273 lines elided ↑ open up ↑
 456  451  extern  void            update_target(Property line, Doname result);
 457  452  extern  void            warning(char *, ...);
 458  453  extern  void            write_state_file(int report_recursive, Boolean exiting);
 459  454  extern  Name            vpath_translation(register Name cmd);
 460  455  
 461  456  #define DEPINFO_FMT_VERSION "VERS2$"
 462  457  #define VER_LEN strlen(DEPINFO_FMT_VERSION)
 463  458  
 464  459  #ifdef NSE
 465  460  
 466      -/* 
      461 +/*
 467  462   *  NSE version for depinfo format
 468  463   */
 469  464  extern Boolean          nse;
 470  465  extern Name             nse_backquote_seen;
 471  466  extern Boolean          nse_did_recursion;
 472  467  extern Name             nse_shell_var_used;
 473  468  extern Boolean          nse_watch_vars;
 474  469  extern wchar_t          current_makefile[MAXPATHLEN];
 475  470  extern Boolean          nse_depinfo_locked;
 476  471  extern char             nse_depinfo_lockfile[MAXPATHLEN];
↓ open down ↓ 19 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX