DtTerm: Add pts driver support.

This commit is contained in:
Liang Chang
2021-04-20 08:46:54 +08:00
committed by Jon Trulson
parent 616dd16c70
commit 3c4e5b3124
2 changed files with 108 additions and 0 deletions

View File

@@ -77,6 +77,9 @@ OBJS = \
#include <Library.tmpl>
#if defined(HasPtsDriver) && HasPtsDriver
LinkFile(TermPrimGetPty.c,TermPrimGetPty-pts.c)
#else
/* These should be cleaned up. Test SVR4Architecture? */
#ifdef AlphaArchitecture
LinkFile(TermPrimGetPty.c,TermPrimGetPty-bsd.c)
@@ -105,6 +108,7 @@ LinkFile(TermPrimGetPty.c,TermPrimGetPty-svr4.c)
#ifdef BSDArchitecture
LinkFile(TermPrimGetPty.c,TermPrimGetPty-bsd.c)
#endif
#endif
SubdirLibraryRule($(OBJS))