diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-18 09:25:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-19 08:36:52 +0200 |
commit | a51e882fd3d33968ead33e84f240b622fb30023f (patch) | |
tree | a545b3fc9b8ec0b1992224464451da33c460250c /rsc/source/rscpp | |
parent | 04dbdcd2de85551d5ec516a2a7043950ea5f6fe6 (diff) |
rsc: remove RT11 support
Change-Id: I9e9899c330868eb51b717d49ea901f15005692db
Diffstat (limited to 'rsc/source/rscpp')
-rw-r--r-- | rsc/source/rscpp/cpp2.c | 2 | ||||
-rw-r--r-- | rsc/source/rscpp/cpp3.c | 10 | ||||
-rw-r--r-- | rsc/source/rscpp/cppdef.h | 10 |
3 files changed, 1 insertions, 21 deletions
diff --git a/rsc/source/rscpp/cpp2.c b/rsc/source/rscpp/cpp2.c index 689780a29bb2..7ff7cf216d7b 100644 --- a/rsc/source/rscpp/cpp2.c +++ b/rsc/source/rscpp/cpp2.c @@ -488,7 +488,7 @@ hasdirectory(char* source, char* result) } #else /* - * Random DEC operating system (RT11, RSTS/E) + * Random DEC operating system (RSTS/E) */ char *tp; diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c index 2dec260d7376..124215dbb60a 100644 --- a/rsc/source/rscpp/cpp3.c +++ b/rsc/source/rscpp/cpp3.c @@ -98,16 +98,6 @@ void setincdirs() #endif -#if HOST == SYS_RT11 - extern int $$rsts; /* RSTS/E emulation? */ - - if ($$rsts) - *incend++ = "SY:@"; /* User-defined account */ - *incend++ = "C:"; /* Decus-C library disk */ - *incend++ = "SY:"; /* System (boot) disk */ -#define MAXINCLUDE (NINCLUDE - 3 - IS_INCLUDE) -#endif - #if HOST == SYS_UNKNOWN /* * Kontext: GenMake diff --git a/rsc/source/rscpp/cppdef.h b/rsc/source/rscpp/cppdef.h index 71ff0b8bcd8e..528a8df35239 100644 --- a/rsc/source/rscpp/cppdef.h +++ b/rsc/source/rscpp/cppdef.h @@ -35,7 +35,6 @@ */ #define SYS_UNKNOWN 0 #define SYS_UNIX 1 -#define SYS_RT11 4 #define SYS_LATTICE 5 #define SYS_ONYX 6 #define SYS_68000 7 @@ -44,9 +43,6 @@ #ifdef unix #define HOST SYS_UNIX #else -#ifdef rt11 -#define HOST SYS_RT11 -#endif #endif #endif @@ -120,12 +116,6 @@ #define SYSTEM "unix" #endif -#if TARGET == SYS_RT11 -#define MACHINE "pdp11" -#define SYSTEM "rt11" -#define COMPILER "decus" -#endif - #if TARGET == SYS_68000 || defined(M68000) || defined(m68000) || defined(m68k) /* * All three machine designators have been seen in various systems. |