* 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>
This commit is contained in:
parent
95ff0a0277
commit
a3ec41da2d
|
|
@ -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
|
||||
* 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
|
||||
|
|
|
|||
|
|
@ -769,6 +769,9 @@ else
|
|||
-lncurses )
|
||||
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 ------------
|
||||
|
|
@ -783,11 +786,6 @@ src/spinit \
|
|||
src/spicelib/Makefile \
|
||||
src/spicelib/analysis/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/bjt/Makefile \
|
||||
src/spicelib/devices/bjt2/Makefile \
|
||||
|
|
|
|||
|
|
@ -32,7 +32,9 @@ $Id$
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_TERMCAP
|
||||
#ifdef HAVE_TERMCAP_H
|
||||
#include <termcap.h>
|
||||
#elif HAVE_NCURSES_TERMCAP_H
|
||||
#include <ncurses/termcap.h>
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue