Hi listy,
I have really really been wanting to get started on using mtx_mul~ as per a previous thread: http://lists.puredata.info/pipermail/pd-list/2006-12/044988.html
I decided in the end since it is: a: not working for me in pd-extended 0.38 (see prev thread) b: not included in any pd-extended builds for OS X after that
that I need to compile it myself. I try to run the autoconf in the src directory and I get:
klangisch:~/externals/iem/iemmatrix/src kmccoy$ autoconf configure.ac:40: error: possibly undefined macro: AC_CHECK_CFLAGS If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:155: error: possibly undefined macro: AC_CHECK_LDFLAGS
I don't have much experience compiling and I'm not quite sure where to go from here. This set of objects would be really exciting for me to use, so if anyone can help me with this I would *very* much appreciate it.
Kevin
Well.. nevermind. I reinstalled extended 0.38-4 and now it is working. Hooray! I can't wait to work with it. But... I would still like to know how to compile so I can use it with a more recent version of Pd.
Kevin
On 1/15/07, Kevin McCoy km.takewithyou@gmail.com wrote:
Hi listy,
I have really really been wanting to get started on using mtx_mul~ as per a previous thread: http://lists.puredata.info/pipermail/pd-list/2006-12/044988.html
I decided in the end since it is: a: not working for me in pd-extended 0.38 (see prev thread) b: not included in any pd-extended builds for OS X after that
that I need to compile it myself. I try to run the autoconf in the src directory and I get:
klangisch:~/externals/iem/iemmatrix/src kmccoy$ autoconf configure.ac:40: error: possibly undefined macro: AC_CHECK_CFLAGS If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:155: error: possibly undefined macro: AC_CHECK_LDFLAGS
I don't have much experience compiling and I'm not quite sure where to go from here. This set of objects would be really exciting for me to use, so if anyone can help me with this I would *very* much appreciate it.
Kevin
--
Hallo!
Well.. nevermind. I reinstalled extended 0.38-4 and now it is working.
Hooray! I can't wait to work with it. But... I would still like to know how to compile so I can use it with a more recent version of Pd.
I added iemmatrix now also in the libdir format - so you should also be able to compile it with the pd-extended makefile:
http://pure-data.cvs.sourceforge.net/pure-data/scripts/checkout-developer-la...
go in the folder pure-data/externals
now you can run "make iemmatrix"
However, you should also be able to compile it with the original autoconf/make system from iemmatrix.
LG Georg
Quoting Kevin McCoy km.takewithyou@gmail.com:
Well.. nevermind. I reinstalled extended 0.38-4 and now it is working. Hooray! I can't wait to work with it. But... I would still like to know how to compile so I can use it with a more recent version of Pd.
have you tried a simple "make"? it should call autoconf automatically.
however, what you are missing is calling "aclocal" prior to "autoconf". is this missing in the documentation?
mfg.adr IOhannes
This will work I think if I can find the place to reference the pd source (m_pd.h)... which file do I insert the path in?? Usually there's a "prefix" in the makefile but this one looks a little different (I'm still a beginner at this).
Thanks for your help, Kevin
On 1/15/07, zmoelnig@iem.at zmoelnig@iem.at wrote:
Quoting Kevin McCoy km.takewithyou@gmail.com:
Well.. nevermind. I reinstalled extended 0.38-4 and now it is working. Hooray! I can't wait to work with it. But... I would still like to
know
how to compile so I can use it with a more recent version of Pd.
have you tried a simple "make"? it should call autoconf automatically.
however, what you are missing is calling "aclocal" prior to "autoconf". is this missing in the documentation?
mfg.adr IOhannes
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Kevin McCoy wrote:
This will work I think if I can find the place to reference the pd source (m_pd.h)... which file do I insert the path in?? Usually there's a "prefix" in the makefile but this one looks a little different (I'm still a beginner at this).
depends on how you are going:
~> aclocal ~> autoconf ~> ./configure --with-pd=/path/to/my/pd ~> make ~> make install
or
~> make CONFIGUREFLAGS="--with-pd=/path/to/my/pd" ~> make install
note that the CONFIGUREFLAGS will have no effect if Make.config is already up-to-date, because then configure won't be executed. (if you are working on a "clean" copy of iemmatrix, it should work however)
furthermore, there is a PREFIX in the Makefile (Make.config)
mfg.adsr IOhannes
It worked! Thank you so much for your help!
Kevin
depends on how you are going:
~> aclocal ~> autoconf ~> ./configure --with-pd=/path/to/my/pd ~> make ~> make install
or
~> make CONFIGUREFLAGS="--with-pd=/path/to/my/pd" ~> make install
note that the CONFIGUREFLAGS will have no effect if Make.config is already up-to-date, because then configure won't be executed. (if you are working on a "clean" copy of iemmatrix, it should work however)
furthermore, there is a PREFIX in the Makefile (Make.config)
mfg.adsr IOhannes