adms2 raus

This commit is contained in:
rlar 2012-04-13 16:07:28 +02:00
parent c59baf92ef
commit d85c5840b3
1 changed files with 3 additions and 10 deletions

View File

@ -138,10 +138,6 @@ dnl --enable-cider: define CIDER in the code. This is for CIDER support
AC_ARG_ENABLE(cider,
AS_HELP_STRING([--enable-cider],[Enable CIDER enhancements, (experimental)]))
dnl --enable-adms: define ADMS in the code. This is for the adms Verilog-A compiler support
AC_ARG_ENABLE(adms,
AS_HELP_STRING([--enable-adms],[Enable ADMS code models, (experimental)]))
dnl --enable-adms3: define ADMS in the code. This is for the adms Verilog-A compiler support
AC_ARG_ENABLE(adms3,
AS_HELP_STRING([--enable-adms3],[Enable ADMS code models, (experimental) (adms3)]))
@ -869,7 +865,7 @@ AM_CONDITIONAL([NUMDEV_WANTED], [test "$enable_cider" = "yes"])
AM_CONDITIONAL([PSS_WANTED], [test "$enable_pss" = "yes"])
dnl adms option
if test "$enable_adms" = "yes" -o "$enable_adms3" = "yes" ; then
if test "$enable_adms3" = "yes" ; then
AC_MSG_RESULT(**********************************
* ADMS support is experimental *
**********************************)
@ -878,11 +874,8 @@ if test "$enable_adms" = "yes" -o "$enable_adms3" = "yes" ; then
if test "$ADMSXML" = "no"; then
AC_MSG_ERROR(If you want Verilog-A models you should install admsXml)
fi
if test "$enable_adms3" = "yes" ; then
AC_DEFINE(ADMS,[3],[Support for Verilog-A models (adms3)])
else
AC_DEFINE(ADMS,[1],[Support for Verilog-A models])
fi
AC_DEFINE(ADMS,[3],[Support for Verilog-A models (adms3)])
fi