TamTam packaging
Jani Monoses
jani at ubuntu.com
Wed Apr 16 17:44:15 EDT 2008
Hi Olivier,
I have a few questions regarding the .deb packaging of the four TamTam
activities.
-why are the cpp sources in the MANIFEST and consequently in the xo?
-which versions do you recommend for packaging. Latest are 48 and 49 ,
depending on the activity
I got them to build and start on Ubuntu but I have no sound
The lib is acsound64 not acsound in debian/ubuntu so the link flag
needed a change to rebuild the aclient.so instead of using the one in git.
Hardcoded paths starting with /home/olpc were changed too but it still
does not play any sound - the graphics are stunning though! :)
csound is 5.08.0 do you know if that should be OK?
Minor change to get it to build with -Werror with g++ 4.2.3 (Ubuntu 8.04)
thanks
Jani
--- a/common/Util/Clooper/aclient.cpp
+++ b/common/Util/Clooper/aclient.cpp
@@ -549,8 +549,8 @@ struct TamTamSound
csound = csoundCreate(NULL);
int argc=3;
char **argv = (char**)malloc(argc*sizeof(char*));
- argv[0] = "csound";
- argv[1] = "-m7";
+ argv[0] = (char *)"csound";
+ argv[1] = (char *)"-m7";
argv[2] = orc;
:
More information about the Devel
mailing list