gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

README.configure.txt (842B)


      1 PortAudio uses "autoconf" tools to generate Makefiles for Linux and Mac platforms.
      2 The source for these are configure.in and Makefile.in
      3 If you modify either of these files then please run this command before
      4 testing and checking in your changes. I run this command on Linux.
      5 
      6    autoreconf -if
      7 
      8 If you do not have autoreconf then do:
      9    sudo apt-get install autoconf
     10 
     11 If you get error like "possibly undefined macro: AC_LIBTOOL_WIN32_DLL"
     12 then you try installing some more packages and then try again.
     13 
     14    sudo apt-get install build-essential
     15    sudo apt-get install pkg-config
     16    sudo apt-get install libtool
     17    autoreconf -if
     18 
     19 Then test a build by doing:
     20    
     21    ./configure
     22    make clean
     23    make
     24 
     25 then check in the related files that are modified.
     26 These might include files like:
     27 
     28    configure
     29    config.guess
     30    depcomp
     31    install.sh
     32