handle machines other than DOS & Sun
authorDavid D. Zuhn <zoo@cygnus>
Wed, 6 Jan 1993 10:30:22 +0000 (10:30 +0000)
committerDavid D. Zuhn <zoo@cygnus>
Wed, 6 Jan 1993 10:30:22 +0000 (10:30 +0000)
gdb/29k-share/udi/udiphcfg.h

index 508e04196ea7a712a2222a3d500d2fcf3cfb8534..8a7b7f0d7f63e38f1355386f33be1b2b11b20ae4 100644 (file)
@@ -1,11 +1,19 @@
 /* This file just picks the correct udiphxxx.h depending on the host */
 /* The two hosts that are now defined are SUN and MSDOS */
 
-#ifdef sun
-#include "udiphsun.h"
-#endif
+/* The way this now works, all machines other than DOS are considered to
+   be Sun-like.  This is known to work for HP700's.  If this doesn't work
+   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
+#define CONFIG_INCLUDED
 #include "udiphdos.h"
 #endif
 
+#ifndef CONFIG_INCLUDED
+#include "udiphsun.h"
+#endif