From 51feb87be4550e0746e089dde7ce9780b1ff19de Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 13 Apr 2019 12:42:56 -0700 Subject: [PATCH] rtvax1000: Avoid all QDSS (VCB02) components during build --- VAX/vax_gpx.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/VAX/vax_gpx.c b/VAX/vax_gpx.c index ececd724..4682bd26 100644 --- a/VAX/vax_gpx.c +++ b/VAX/vax_gpx.c @@ -24,6 +24,8 @@ in this Software without prior written authorization from the author. */ +#if !defined(VAX_620) + #include "vax_gpx.h" #define VA_FIFOSIZE 64 @@ -1853,3 +1855,7 @@ va_scroll (); return SCPE_OK; } + +#else /* defined(VAX_620) */ +static const char *dummy_declaration = "Something to compile"; +#endif /* !defined(VAX_620) */