summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
authorFrancois Tigeot <ftigeot@wolfpond.org>2011-04-22 20:04:02 +0200
committerFrancois Tigeot <ftigeot@wolfpond.org>2011-04-22 20:04:02 +0200
commit788568c58421d1e05153db7678b884c770445231 (patch)
tree90c6c01e7b5c13ab21c68fb689de40e4943f6501 /soltools
parentd97ff3e73627500fa59fe1be07ec8b981dac3c12 (diff)
Remove Sequent support
Diffstat (limited to 'soltools')
-rw-r--r--soltools/mkdepend/imakemdep.h14
-rw-r--r--soltools/mkdepend/main.c2
2 files changed, 2 insertions, 14 deletions
diff --git a/soltools/mkdepend/imakemdep.h b/soltools/mkdepend/imakemdep.h
index bd42dece5efc..f241ac559d49 100644
--- a/soltools/mkdepend/imakemdep.h
+++ b/soltools/mkdepend/imakemdep.h
@@ -130,14 +130,6 @@ in this Software without prior written authorization from the X Consortium.
#define imake_ccflags "-DSYSV -DUSG -DNOSTDHDRS"
#endif
-#ifdef sequent
-#define imake_ccflags "-DX_NOT_STDC_ENV -DX_NOT_POSIX"
-#endif
-
-#ifdef _SEQUENT_
-#define imake_ccflags "-DSYSV -DUSG"
-#endif
-
#if defined(SX) || defined(PC_UX)
#define imake_ccflags "-DSYSV"
#endif
@@ -167,7 +159,7 @@ in this Software without prior written authorization from the X Consortium.
* descriptor onto another, define such a mechanism here (if you don't
* already fall under the existing category(ies).
*/
-#if defined(SYSV) && !defined(_CRAY) && !defined(Mips) && !defined(_SEQUENT_)
+#if defined(SYSV) && !defined(_CRAY) && !defined(Mips)
#define dup2(fd1,fd2) ((fd1 == fd2) ? fd1 : (close(fd2), \
fcntl(fd1, F_DUPFD, fd2)))
#endif
@@ -655,10 +647,6 @@ struct pair predefs[] = {
#ifdef __sxg__
{"__sxg__", "1", NULL},
#endif
-#ifdef _SEQUENT_
- {"_SEQUENT_", "1", NULL},
- {"__STDC__", "1", NULL},
-#endif
#ifdef __bsdi__
{"__bsdi__", "1", NULL},
#endif
diff --git a/soltools/mkdepend/main.c b/soltools/mkdepend/main.c
index bddeeba988cc..441f986f399e 100644
--- a/soltools/mkdepend/main.c
+++ b/soltools/mkdepend/main.c
@@ -719,7 +719,7 @@ void redirect(line, makefile)
}
}
fflush(fdout);
-#if defined(USGISH) || defined(_SEQUENT_) || defined(USE_CHMOD)
+#if defined(USGISH) || defined(USE_CHMOD)
chmod(makefile, st.st_mode);
#else
fchmod(fileno(fdout), st.st_mode);