mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
handle machines other than DOS & Sun
This commit is contained in:
parent
91d2a93870
commit
71f5556686
@ -1,11 +1,19 @@
|
|||||||
/* This file just picks the correct udiphxxx.h depending on the host */
|
/* This file just picks the correct udiphxxx.h depending on the host */
|
||||||
/* The two hosts that are now defined are SUN and MSDOS */
|
/* The two hosts that are now defined are SUN and MSDOS */
|
||||||
|
|
||||||
#ifdef sun
|
/* The way this now works, all machines other than DOS are considered to
|
||||||
#include "udiphsun.h"
|
be Sun-like. This is known to work for HP700's. If this doesn't work
|
||||||
#endif
|
for some host, create an alternative udiphXXX.h file.
|
||||||
|
|
||||||
|
This scheme for determining which file to include is *ugly* and should be
|
||||||
|
fixed at some later date. -- zoo - 930106
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef MSDOS
|
#ifdef MSDOS
|
||||||
|
#define CONFIG_INCLUDED
|
||||||
#include "udiphdos.h"
|
#include "udiphdos.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef CONFIG_INCLUDED
|
||||||
|
#include "udiphsun.h"
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user