Revision: 10044 http://pure-data.svn.sourceforge.net/pure-data/?rev=10044&view=rev Author: zmoelnig Date: 2008-06-19 06:14:39 -0700 (Thu, 19 Jun 2008)
Log Message: ----------- updated readme.txt like vincent rioux suggested; fixed configure to also search for libdmx4l (which is the library installed by he upstream dmx4linux package)
Modified Paths: -------------- trunk/externals/iem/dmx512/README.txt trunk/externals/iem/dmx512/src/configure.ac
Modified: trunk/externals/iem/dmx512/README.txt =================================================================== --- trunk/externals/iem/dmx512/README.txt 2008-06-19 09:40:37 UTC (rev 10043) +++ trunk/externals/iem/dmx512/README.txt 2008-06-19 13:14:39 UTC (rev 10044) @@ -38,11 +38,14 @@ finally become root and do # make install
+after all has gone well, load the appropriate kernel modules
-load the appropriate kernel modules
+btw, it is always a good idea to read the readme that comes with dmx4linux...
+ B. permissions +============== the dmx device-files created by udev will be owned by root.root and not be read/writeable by anyone but root. in order to use them as an ordinary user, become root and create a group @@ -55,11 +58,28 @@ if you have problems, try plugging your device out and in again
+C. compiling the Pd-objects +=========================== +so now it is time to get the Pd-objects going. +for this change into the "./src" directory of the iem/dmx512/ folder +(this might well be the folder that holds this README.txt you are currently +reading)
+if you have obtained the source-code via subversion, you will first have to run +% autoconf
+(this should not be needed if you downloaded the sources as a release tarball; +that is: if the person who created the tarball has not forgotten to do it for you)
+then run +% configure +% make
+you should now have 2 binary files in the src/ folder called [dmxin] and [dmxout]
+go on and use em!
+ +
Modified: trunk/externals/iem/dmx512/src/configure.ac =================================================================== --- trunk/externals/iem/dmx512/src/configure.ac 2008-06-19 09:40:37 UTC (rev 10043) +++ trunk/externals/iem/dmx512/src/configure.ac 2008-06-19 13:14:39 UTC (rev 10044) @@ -39,16 +39,12 @@ dnl AC_CHECK_LIB(stk, main, STK=yes)
+AC_CHECK_LIB(dmx4l, DMXsleep) AC_CHECK_LIB(dmx4linux, DMXsleep) -if test "x$ac_cv_lib_dmx4linux_DMXsleep" = "xyes"; then - DMX4LINUX_LFLAGS="-ldmx4linux" -fi +#if test "x$ac_cv_lib_dmx4linux_DMXsleep" = "xyes"; then +# DMX4LINUX_LFLAGS="-ldmx4linux" +#fi
-dnl AC_CHECK_LIB(asound, snd_seq_close) -dnl if test "x$ac_cv_lib_asound_snd_seq_close" = "xyes"; then -dnl DFLAGS="-DHAVE_ALSA ${DFLAGS}" -dnl fi - if test "x$includedir" != "x"; then for id in $includedir do
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.