From d85c5840b3c6447e368f3b4258b93d1ff792d13d Mon Sep 17 00:00:00 2001 From: rlar Date: Fri, 13 Apr 2012 16:07:28 +0200 Subject: [PATCH] adms2 raus --- configure.ac | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index 58b38158c..635c0e1af 100644 --- a/configure.ac +++ b/configure.ac @@ -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