From d957f35af0559d0723f8109086297e23b279ae62 Mon Sep 17 00:00:00 2001 From: speedie Date: Tue, 8 Aug 2023 21:09:08 +0200 Subject: [PATCH] Add more features to feature list --- libs/argv.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/libs/argv.c b/libs/argv.c index 9cb7c50..f2fceba 100644 --- a/libs/argv.c +++ b/libs/argv.c @@ -594,6 +594,16 @@ void comp_opts(void) { #else fprintf(stdout, "xrdb: Unsupported\n"); #endif +#if REGEX + fprintf(stdout, "Regex: Supported\n"); +#else + fprintf(stdout, "Regex: Unsupported\n"); +#endif +#if FIFO + fprintf(stdout, "FIFO: Supported\n"); +#else + fprintf(stdout, "FIFO: Unsupported\n"); +#endif } void usage(int status) {