Browse Source

* Fixed(?) missing files error when autogen.sh is run (with no adms)

- configure.in:  removed adms directors from AC_CONFIG_FILES list
 * Fixed inclusion of termcap header
  - configure.in:  add check for <termcap.h> to <ncurses/termcap.h>
  - frontend/terminal.c: select either <termcap.h> or <ncurses/termcap.h>
pre-master-46
sjborley 19 years ago
parent
commit
a3ec41da2d
  1. 7
      ChangeLog
  2. 8
      configure.in
  3. 4
      src/frontend/terminal.c

7
ChangeLog

@ -1,3 +1,10 @@
2007-12-13 Steven Borley
* Fixed(?) missing files error when autogen.sh is run (with no adms)
- configure.in: removed adms directors from AC_CONFIG_FILES list
* Fixed inclusion of termcap header
- configure.in: add check for <termcap.h> to <ncurses/termcap.h>
- frontend/terminal.c: select either <termcap.h> or <ncurses/termcap.h>
2007-12-09 Dietmar Warning 2007-12-09 Dietmar Warning
* src/frontend/numparam/xpression.c: placeholder for agauss (y=nominal_value) * src/frontend/numparam/xpression.c: placeholder for agauss (y=nominal_value)
* src/spicelib/parser/inpdomod.c: if no bsim3 version given then use 3.30 * src/spicelib/parser/inpdomod.c: if no bsim3 version given then use 3.30

8
configure.in

@ -769,6 +769,9 @@ else
-lncurses ) -lncurses )
fi fi
dnl Use AC_CHECK_HEADERS so the HAVE_*_H symbol gets defined
AC_CHECK_HEADERS(ncurses/termcap.h termcap.h)
dnl Output Files dnl Output Files
dnl ------------ dnl ------------
@ -783,11 +786,6 @@ src/spinit \
src/spicelib/Makefile \ src/spicelib/Makefile \
src/spicelib/analysis/Makefile \ src/spicelib/analysis/Makefile \
src/spicelib/devices/Makefile \ src/spicelib/devices/Makefile \
src/spicelib/devices/adms/hicum0/Makefile \
src/spicelib/devices/adms/hicum2/Makefile \
src/spicelib/devices/adms/mextram/Makefile \
src/spicelib/devices/adms/ekv/Makefile \
src/spicelib/devices/adms/psp102/Makefile \
src/spicelib/devices/asrc/Makefile \ src/spicelib/devices/asrc/Makefile \
src/spicelib/devices/bjt/Makefile \ src/spicelib/devices/bjt/Makefile \
src/spicelib/devices/bjt2/Makefile \ src/spicelib/devices/bjt2/Makefile \

4
src/frontend/terminal.c

@ -32,7 +32,9 @@ $Id$
#endif #endif
#endif #endif
#ifdef HAVE_TERMCAP
#ifdef HAVE_TERMCAP_H
#include <termcap.h>
#elif HAVE_NCURSES_TERMCAP_H
#include <ncurses/termcap.h> #include <ncurses/termcap.h>
#endif #endif

Loading…
Cancel
Save