|
|
|
@ -90,6 +90,10 @@ AC_ARG_ENABLE([newpred], |
|
|
|
AC_ARG_ENABLE([newtrunc], |
|
|
|
[AS_HELP_STRING([--enable-newtrunc], [Enable, how we want extrapolate capacitances.])]) |
|
|
|
|
|
|
|
# --enable-oldapps: define OLDAPPS |
|
|
|
AC_ARG_ENABLE([oldapps], |
|
|
|
[AS_HELP_STRING([--enable-oldapps], [Enable making old, outdated apps.])]) |
|
|
|
|
|
|
|
# --enable-sense2: define WANT_SENSE2 for the code |
|
|
|
AC_ARG_ENABLE([sense2], |
|
|
|
[AS_HELP_STRING([--enable-sense2], [Use spice2 sensitivity analysis.])]) |
|
|
|
@ -175,6 +179,7 @@ AC_ARG_ENABLE([xgraph], |
|
|
|
# ngspice shared may want relative paths for spinit etc. |
|
|
|
AC_ARG_ENABLE([relpath], |
|
|
|
[AS_HELP_STRING([--enable-relpath], [Enable relative paths for spinit etc.])]) |
|
|
|
|
|
|
|
# --with-readline: Includes GNU readline support into CLI. Default is "no". |
|
|
|
AC_ARG_WITH([readline], |
|
|
|
[AS_HELP_STRING([--with-readline[=yes/no]], [Enable GNU readline support for CLI. Default=no.])]) |
|
|
|
@ -253,6 +258,7 @@ if test "x$enable_gprof" = xyes; then |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
# Not sure that this will work.... |
|
|
|
if test "x$with_checkergcc" = xyes; then |
|
|
|
CC="checkergcc" |
|
|
|
@ -677,6 +683,18 @@ esac |
|
|
|
AM_CONDITIONAL([NO_X], [test "x$has_no_x" = xtrue]) |
|
|
|
AM_CONDITIONAL([NO_HELP], [test "x$has_no_help" = xtrue]) |
|
|
|
|
|
|
|
|
|
|
|
# enabling making of the old and outdated applications |
|
|
|
# ngsconvert ngproc2mod ngmultidec ngmakeidx nghelp |
|
|
|
if test "x$enable_oldapps"=xyes; then |
|
|
|
has_oldapps=true |
|
|
|
AC_MSG_RESULT([ngsconvert ngproc2mod ngmultidec ngmakeidx nghelp are made.]) |
|
|
|
else |
|
|
|
has_oldapps=false |
|
|
|
fi |
|
|
|
AM_CONDITIONAL([OLDAPPS], [test "x$has_oldapps" = xtrue]) |
|
|
|
|
|
|
|
|
|
|
|
# Check for a few typdefs: |
|
|
|
AC_TYPE_PID_T |
|
|
|
AC_TYPE_SIGNAL |
|
|
|
|