[CM] configure in CLM

Anders Vinjar andersvi@notam02.no
Thu, 08 Jul 2004 17:32:01 +0200


--=-=-=

>>>>> " " == Bill Schottstaedt <bil@ccrma.Stanford.EDU> writes:

     > The current CLM uses a configure script to set up the C
     > side switches -- a long overdue change, but one that is
     > bug-prone.  Let me know of any problems!

The configure-script works fine here.  A minor adjustment would
be to make it callable regardless of which directory you're in
while loading all.lisp.  Heres a change which adjusts ./configure
to clm-directory/configure:


--=-=-=
Content-Type: text/x-patch
Content-Disposition: inline; filename=all.lisp.diff
Content-Description: diff output

*** /site/cm-sys/all.lisp	2004-07-08 16:35:33.000000000 +0200
--- /site/cm-sys/clm-2/all.lisp	2004-06-30 12:03:14.000000000 +0200
***************
*** 158,164 ****
  (defvar configure)
  (if reconfigure
      (progn
!       (setf configure (concatenate 'string clm-directory "configure --quiet -with-doubles --with-float-samples"))
        #+alsa (setf configure (concatenate 'string configure " --with-alsa"))
        #+jack (setf configure (concatenate 'string configure " --with-jack"))
        
--- 157,163 ----
  (defvar configure)
  (if reconfigure
      (progn
!       (setf configure "./configure --quiet -with-doubles --with-float-samples")
        #+alsa (setf configure (concatenate 'string configure " --with-alsa"))
        #+jack (setf configure (concatenate 'string configure " --with-jack"))
        

--=-=-=


-anders

--=-=-=--