From d4fcef9bf6325f72a31edcfd82e28867330e6311 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 7 Dec 2022 14:35:11 +0100 Subject: [PATCH] Repair the broken --enable-oldapps option --- src/main.c | 12 ++++++++++++ src/ngsconvert.c | 1 + 2 files changed, 13 insertions(+) diff --git a/src/main.c b/src/main.c index 7923c6201..11dfc27e3 100644 --- a/src/main.c +++ b/src/main.c @@ -365,6 +365,12 @@ com_snsave(wordlist *wl) NG_IGNORE(wl); } +void +com_optran(wordlist *wl) +{ + NG_IGNORE(wl); +} + void SMPprint(SMPmatrix *n1, char *n2) { @@ -428,6 +434,12 @@ EVTswitch_plot(CKTcircuit* ckt, const char* plottypename) return 1; }; +void +EVTsave(wordlist* wl) +{ + NG_IGNORE(wl); +} + int load_opus(const char *name) { diff --git a/src/ngsconvert.c b/src/ngsconvert.c index 79d5563ae..00dca03c7 100644 --- a/src/ngsconvert.c +++ b/src/ngsconvert.c @@ -38,6 +38,7 @@ struct plot *plot_cur = NULL; int cp_maxhistlength = 0; bool cp_no_histsubst = FALSE; struct compat newcompat; +bool cx_degrees = FALSE; char *cp_program = "sconvert";