ensure compilation succedes without OSDI

This commit is contained in:
Pascal Kuthe 2022-12-10 01:55:43 +01:00 committed by Holger Vogt
parent c90f791a5f
commit bca48b5e78
2 changed files with 7 additions and 1 deletions

View File

@ -21,7 +21,6 @@ libinp_la_SOURCES = \
inp2k.c \
inp2l.c \
inp2m.c \
inp2n.c \
inp2o.c \
inp2p.c \
inp2q.c \
@ -71,6 +70,11 @@ libinp_la_SOURCES = \
sperror.c \
inpxx.h
if OSDI_WANTED
libinp_la_SOURCES += inp2n.c
endif
AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(top_srcdir)/src/include -I$(top_srcdir)/src/frontend
AM_CFLAGS = $(STATIC)
AM_YFLAGS = -d

View File

@ -20,7 +20,9 @@ void INP2J(CKTcircuit *ckt, INPtables *tab, struct card *current);
void INP2K(CKTcircuit *ckt, INPtables *tab, struct card *current);
void INP2L(CKTcircuit *ckt, INPtables *tab, struct card *current);
void INP2M(CKTcircuit *ckt, INPtables *tab, struct card *current);
#ifdef OSDI
void INP2N(CKTcircuit *ckt, INPtables *tab, struct card *current);
#endif
void INP2O(CKTcircuit *ckt, INPtables *tab, struct card *current);
void INP2P(CKTcircuit *ckt, INPtables *tab, struct card *current);
void INP2Q(CKTcircuit *ckt, INPtables *tab, struct card *current, CKTnode *gnode);