Changeset 244 for trunk/src


Ignore:
Timestamp:
May 27, 2003, 2:41:57 PM (22 years ago)
Author:
bird
Message:

Branding/buildtimestamp.

Location:
trunk/src/emx
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/emxcat/emxcat.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r243 r244  
    8282static void NORETURN usage (void)
    8383{
    84   fprintf (stderr, "emxcat " VERSION " -- "
     84  fprintf (stderr, "emxcat " VERSION INNOTEK_VERSION " -- "
    8585           "Copyright (c) 1992-1995 by Eberhard Mattes\n\n");
    8686  fprintf (stderr, "Usage: emxcat [-D<symbol>]... -o <output_file> <input_file>...\n");
     
    9494{
    9595  void *p;
    96  
     96
    9797  p = malloc (n);
    9898  if (p == NULL)
     
    111111{
    112112  char *p;
    113  
     113
    114114  p = xmalloc (strlen (s) + 1);
    115115  strcpy (p, s);
     
    303303{
    304304  edge *e;
    305  
     305
    306306  v->mark = 1;
    307307  v->number = vn++;
  • trunk/src/emx/src/emxdoc/emxdoc.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r243 r244  
    185185static void usage (void)
    186186{
    187   fputs ("emxdoc " VERSION " -- "
     187  fputs ("emxdoc " VERSION INNOTEK_VERSION " -- "
    188188         "Copyright (c) 1993-1999 by Eberhard Mattes\n\n", stderr);
    189189  fputs ("Usage:\n", stderr);
  • trunk/src/emx/src/emxexp/emxexp.c

    • Property cvs2svn:cvs-rev changed from 1.7 to 1.8
    r243 r244  
    7373{
    7474  void *p;
    75  
     75
    7676  p = malloc (n);
    7777  if (p == NULL)
     
    8888{
    8989  void *p;
    90  
     90
    9191  p = realloc (ptr, n);
    9292  if (p == NULL)
     
    100100static void usage (void)
    101101{
    102   fputs ("emxexp " VERSION " -- Copyright (c) 1993-1995 by Eberhard Mattes\n\n"
     102  fputs ("emxexp " VERSION INNOTEK_VERSION " -- Copyright (c) 1993-1995 by Eberhard Mattes\n\n"
    103103         "Usage: emxexp [-n] [-u] [-o[<ordinal>] <input_file>...\n\n"
    104104         "Options:\n"
  • trunk/src/emx/src/emximp/emximp.c

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r243 r244  
    101101static void usage (void)
    102102{
    103   puts ("emximp " VERSION " -- Copyright (c) 1992-1996 by Eberhard Mattes\n");
     103  puts ("emximp " VERSION INNOTEK_VERSION " -- Copyright (c) 1992-1996 by Eberhard Mattes\n");
    104104  puts ("Usage:");
    105105  puts ("  emximp [-a[<assembler>]] [-b <base_name>|<prefix_length>] "
  • trunk/src/emx/src/emxload/emxload.c

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r243 r244  
    317317  int i;
    318318  time_t now, stop;
    319  
     319
    320320  stop = 0;
    321321
     
    748748static void usage (void)
    749749{
    750   fputs ("emxload " VERSION " -- "
     750  fputs ("emxload " VERSION INNOTEK_VERSION " -- "
    751751         "Copyright (c) 1993-1996 by Eberhard Mattes\n\n"
    752752         "Usage: emxload [-m <limit>] [-s <limit>] [-e] [-u[w]]\n"
  • trunk/src/emx/src/emxomf/emxaout.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r243 r244  
    208208{
    209209  void *p;
    210  
     210
    211211  p = malloc (n);
    212212  if (p == NULL && n != 0)
     
    223223{
    224224  void *p;
    225  
     225
    226226  p = realloc (ptr, n);
    227227  if (p == NULL)
     
    238238{
    239239  char *p;
    240  
     240
    241241  p = xmalloc (strlen (s) + 1);
    242242  strcpy (p, s);
     
    264264static void usage (void)
    265265{
    266   puts ("emxaout " VERSION " -- Copyright (c) 1994-1996 by Eberhard Mattes\n");
     266  puts ("emxaout " VERSION INNOTEK_VERSION " -- Copyright (c) 1994-1996 by Eberhard Mattes\n");
    267267  puts ("Usage:");
    268268  puts ("  emxaout [-u] [-o <output_file>] <input_file>");
     
    702702   ³n   External name
    703703   ³1-2 Type index
    704    À 
     704   À
    705705
    706706   Symbol indices are assigned sequentially by EXTDEF and COMDEF. */
     
    932932    F (bit 7)           1=frame thread, 0=methods F0 through F5
    933933    Frame (bits 4-6)    frame thread number (F=1) or frame method (F=0)
    934     T (bit 3)           1=target thread, 1=methods 
     934    T (bit 3)           1=target thread, 1=methods
    935935    P (bit 2)           Bit 2 of target method
    936936    Targt (bits 0-1)    target thread number (T=1) or target method (T=0) */
  • trunk/src/emx/src/emxomf/emxomf.c

    • Property cvs2svn:cvs-rev changed from 1.8 to 1.9
    r243 r244  
    487487{
    488488  void *p;
    489  
     489
    490490  p = malloc (n);
    491491  if (p == NULL)
     
    502502{
    503503  void *p;
    504  
     504
    505505  p = realloc (ptr, n);
    506506  if (p == NULL)
     
    517517{
    518518  char *p;
    519  
     519
    520520  p = xmalloc (strlen (s) + 1);
    521521  strcpy (p, s);
     
    542542  int i, j, n, len, t;
    543543  const byte *s;
    544  
     544
    545545  i = 4; len = strlen (name);
    546546
     
    14991499    F (bit 7)           1=frame thread, 0=methods F0 through F5
    15001500    Frame (bits 4-6)    frame thread number (F=1) or frame method (F=0)
    1501     T (bit 3)           1=target thread, 1=methods 
     1501    T (bit 3)           1=target thread, 1=methods
    15021502    P (bit 2)           Bit 2 of target method
    15031503    Targt (bits 0-1)    target thread number (T=1) or target method (T=0)  */
     
    31393139static void usage (void)
    31403140{
    3141   puts ("emxomf " VERSION " -- Copyright (c) 1992-1995 by Eberhard Mattes\n");
     3141  puts ("emxomf " VERSION INNOTEK_VERSION " -- Copyright (c) 1992-1995 by Eberhard Mattes\n");
    31423142  puts ("Usage:");
    31433143  puts ("  emxomf [-dgqs] [-l[<symbol>]] [-m <symbol>] [-p <page_size>]");
     
    33893389                }
    33903390            }
    3391          
     3391
    33923392          /* Ignore the __.SYMDEF and __.IMPORT members.  Ignore
    33933393             import modules unless creating a library file. */
  • trunk/src/emx/src/emxomf/emxomfar.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r243 r244  
    5555static void usage (void)
    5656{
    57   fprintf (stderr, "emxomfar " VERSION " -- "
     57  fprintf (stderr, "emxomfar " VERSION INNOTEK_VERSION " -- "
    5858           "Copyright (c) 1992-1996 by Eberhard Mattes\n\n");
    5959  fprintf (stderr, "Usage: emxomfar [-p#] <command> <library_file> [<module>]...\n");
  • trunk/src/emx/src/emxomf/emxomfld.c

    • Property cvs2svn:cvs-rev changed from 1.8 to 1.9
    r243 r244  
    155155static void usage (void)
    156156{
    157   fprintf (stderr, "emxomfld " VERSION " -- "
     157  fprintf (stderr, "emxomfld " VERSION INNOTEK_VERSION " -- "
    158158           "Copyright (c) 1992-1996 by Eberhard Mattes\n\n");
    159159  fprintf (stderr,
  • trunk/src/emx/src/emxomf/listomf.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r243 r244  
    23372337static void usage (void)
    23382338{
    2339   fputs ("listomf " VERSION " -- "
     2339  fputs ("listomf " VERSION INNOTEK_VERSION " -- "
    23402340         "Copyright (c) 1993-1996 by Eberhard Mattes\n\n"
    23412341         "Usage: listomf [-a] [-d] <input_file>\n\n"
  • trunk/src/emx/src/emxstack/emxstack.c

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r243 r244  
    219219static void usage (void)
    220220{
    221   fputs ("emxstack " VERSION " -- "
     221  fputs ("emxstack " VERSION INNOTEK_VERSION " -- "
    222222         "Copyright (c) 1994-1995 by Eberhard Mattes\n\n", stderr);
    223223  fputs ("Usage: emxstack <command> [<options>] <file>...\n", stderr);
     
    550550  new_stack_size = ROUND_PAGE (n * 1024);
    551551}
    552  
     552
    553553
    554554/* The main function of emxstack. */
  • trunk/src/emx/src/emxtsf/emxtsf.c

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r243 r244  
    5656static void usage (void)
    5757{
    58   fputs ("emxtsf " VERSION " -- Copyright (c) 1996 by Eberhard Mattes\n\n"
     58  fputs ("emxtsf " VERSION INNOTEK_VERSION " -- Copyright (c) 1996 by Eberhard Mattes\n\n"
    5959         "Usage: emxtsf [-d <dll_name>] [-w <level>] <tss_file> <map_file> <def_file>\n",
    6060         stderr);
  • trunk/src/emx/version.smak

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r243 r244  
    1717CFLAGS.DEF.VERSION = -DVERSION=\\\"$(VERSION)\\\"
    1818
     19# INNOTEK_VERSION is normally defined in the environment by a toplevel makefile.
     20ifndef INNOTEK_VERSION
     21export INNOTEK_VERSION        ?= (Innotek Build $(shell date '+%Y-%m-%d %H:%M'))
     22endif
     23CFLAGS.DEF.VERSION += '-DINNOTEK_VERSION=\" $(INNOTEK_VERSION)\"'
     24
    1925# Copyright
    2026COPYRIGHT = Copyright (c) 2003 InnoTek Systemberatung GmbH
Note: See TracChangeset for help on using the changeset viewer.