1
0
mirror of https://github.com/open-simh/simh.git synced 2026-02-12 02:57:44 +00:00

SCP: Add PCRE version to SHOW VERSION output

This commit is contained in:
Mark Pizzolato
2018-04-08 17:13:54 -07:00
parent 1d22b488a9
commit 114a29bc2f
3 changed files with 6 additions and 5 deletions

2
scp.c
View File

@@ -5206,7 +5206,7 @@ if (flag) {
fprintf (st, "\n %s", sim_toffset_64 ? "Large File (>2GB) support" : "No Large File support");
fprintf (st, "\n SDL Video support: %s", vid_version());
#if defined (HAVE_PCREPOSIX_H)
fprintf (st, "\n PCRE RegEx support for EXPECT commands");
fprintf (st, "\n PCRE RegEx (Version %s) support for EXPECT commands", pcre_version());
#elif defined (HAVE_REGEX_H)
fprintf (st, "\n RegEx support for EXPECT commands");
#else