Changeset 61 for trunk/orca

Show
Ignore:
Timestamp:
02/22/06 22:55:02 (3 years ago)
Author:
krobillard
Message:

Added OR_VERSION defines to ovalue.h.
Removed version.h
Mac PPC - OR_BIG_ENDIAN no longer needs to be set in Makefile.

Location:
trunk/orca
Files:
1 removed
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/console.c

    r42 r61  
    2020 
    2121#include <stdio.h> 
    22 #include "version.h" 
    2322#include "ovalue.h" 
    2423 
     
    8988    else 
    9089    { 
    91         printf( "ORCA %s (%s)\n", VERSION_STR, __DATE__ ); 
     90        printf( "ORCA %s (%s)\n", OR_VERSION_STR, __DATE__ ); 
    9291halt: 
    9392        while( 1 ) 
  • trunk/orca/gl/main.c

    r43 r61  
    2020 
    2121#include <stdio.h> 
    22 #include "version.h" 
    2322#include "gx.h" 
    2423#include "audio.h" 
     
    8584    { 
    8685        OPEN_CONSOLE 
    87         printf( "ORCA-GL %s (%s)\n", VERSION_STR, __DATE__ ); 
     86        printf( "ORCA-GL %s (%s)\n", OR_VERSION_STR, __DATE__ ); 
    8887 
    8988halt: 
  • trunk/orca/ovalue.h

    r55 r61  
    3232   or*   Functions, variables, macros 
    3333*/ 
     34 
     35 
     36#define OR_VERSION_STR  "0.0.23" 
     37#define OR_VERSION      0x000023 
     38 
     39 
     40#if defined(__APPLE__) && defined(__BIG_ENDIAN__) 
     41#define OR_BIG_ENDIAN   1 
     42#endif 
    3443 
    3544 
  • trunk/orca/project.r

    r10 r61  
    4848    macx [ 
    4949        include_from %unix 
    50         cflags {-DOR_BIG_ENDIAN} 
    5150        cflags {-std=gnu99} 
    5251    ]