Changeset 61 for trunk/orca
- Timestamp:
- 02/22/06 22:55:02 (3 years ago)
- Location:
- trunk/orca
- Files:
-
- 1 removed
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/console.c
r42 r61 20 20 21 21 #include <stdio.h> 22 #include "version.h"23 22 #include "ovalue.h" 24 23 … … 89 88 else 90 89 { 91 printf( "ORCA %s (%s)\n", VERSION_STR, __DATE__ );90 printf( "ORCA %s (%s)\n", OR_VERSION_STR, __DATE__ ); 92 91 halt: 93 92 while( 1 ) -
trunk/orca/gl/main.c
r43 r61 20 20 21 21 #include <stdio.h> 22 #include "version.h"23 22 #include "gx.h" 24 23 #include "audio.h" … … 85 84 { 86 85 OPEN_CONSOLE 87 printf( "ORCA-GL %s (%s)\n", VERSION_STR, __DATE__ );86 printf( "ORCA-GL %s (%s)\n", OR_VERSION_STR, __DATE__ ); 88 87 89 88 halt: -
trunk/orca/ovalue.h
r55 r61 32 32 or* Functions, variables, macros 33 33 */ 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 34 43 35 44 -
trunk/orca/project.r
r10 r61 48 48 macx [ 49 49 include_from %unix 50 cflags {-DOR_BIG_ENDIAN}51 50 cflags {-std=gnu99} 52 51 ]
