  GNU nano 6.2                                                                                    cl.sh.patch                                                                                             
--- compile_linux.sh.backup     2022-09-01 19:33:26.935184210 +1000
+++ compile_linux.sh    2022-09-01 19:34:11.277891711 +1000
@@ -36,14 +36,14 @@
 fi
 
 # If compiling sources from git, you may need to uncomment the following two lines:
-./autogen.sh
-if [ $? -ne 0 ]; then  echo "./autogen.sh failed"; exit 1 ; fi
+#./autogen.sh
+#if [ $? -ne 0 ]; then  echo "./autogen.sh failed"; exit 1 ; fi
 
 # Alternatively, if compiling sources from git, and want to add adms created devices,
 # you may need to uncomment the following two lines (and don't forget to add adms option
 # to the ../configure statement):
-#./autogen.sh --adms
-#if [ $? -ne 0 ]; then  echo "./autogen.sh failed"; exit 1 ; fi
+./autogen.sh --adms
+if [ $? -ne 0 ]; then  echo "./autogen.sh failed"; exit 1 ; fi
 
 echo
 if test "$1" = "d"; then
@@ -52,14 +52,14 @@
   echo "configuring for 64 bit debug"
   echo
 # You may add  --enable-adms to the following command for adding adms generated devices 
-  ../configure --with-x --enable-xspice --enable-cider --with-readline=yes --enable-openmp CFLAGS="-g -m64 -O0 -Wall -Wno-unused-but-set-variable" LDFLAGS="-m64 -g"
+  ../configure --enable-adms --with-x --enable-xspice --enable-cider --with-readline=yes --enable-openmp CFLAGS="-g -m64 -O0 -Wall -Wno-unused-but-set-variable" LDFLAGS="-m64 -g"
 else
    cd release
    if [ $? -ne 0 ]; then  echo "cd release failed"; exit 1 ; fi
   echo "configuring for 64 bit release"
   echo
 # You may add  --enable-adms to the following command for adding adms generated devices 
-  ../configure --with-x --enable-xspice --enable-cider --with-readline=yes --enable-openmp --disable-debug CFLAGS="-m64 -O2" LDFLAGS="-m64 -s"
+  ../configure --enable-adms --with-x --enable-xspice --enable-cider --with-readline=yes --enable-openmp --disable-debug CFLAGS="-m64 -O2" LDFLAGS="-m64 -s"
 fi
 if [ $? -ne 0 ]; then  echo "../configure failed"; exit 1 ; fi
 
