1
0
mirror of https://github.com/simh/simh.git synced 2026-03-01 01:30:30 +00:00

SCP: Add newer baseline libreadline support.

This commit is contained in:
Mark Pizzolato
2021-12-15 16:52:49 -08:00
parent 8b33921c92
commit cea76d59bd

2
scp.c
View File

@@ -10107,6 +10107,8 @@ if (prompt && (!initialized)) {
handle = dlopen("libncurses." S__STR(SIM_HAVE_DLOPEN), RTLD_NOW|RTLD_GLOBAL);
handle = dlopen("libcurses." S__STR(SIM_HAVE_DLOPEN), RTLD_NOW|RTLD_GLOBAL);
handle = dlopen("libreadline." S__STR(SIM_HAVE_DLOPEN), RTLD_NOW|RTLD_GLOBAL);
if (!handle)
handle = dlopen("libreadline." S__STR(SIM_HAVE_DLOPEN) ".8", RTLD_NOW|RTLD_GLOBAL);
if (!handle)
handle = dlopen("libreadline." S__STR(SIM_HAVE_DLOPEN) ".7", RTLD_NOW|RTLD_GLOBAL);
if (!handle)