> there are so many items, I cannot figure it out where I should start my > contributing work. Thanks in advance for giving some hints on this. >
Meanwhile I found that the dummy mycas plugin is the way to go. The file mycas.cpp is not anymore C++ compliant, so this change seems important (at least for gcc 13.3): .../TeXmacs/src/plugins/mycas/src$ *svn diff * Index: mycas.cpp =================================================================== --- mycas.cpp (revision 15286) +++ mycas.cpp (working copy) @@ -17,12 +17,14 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <iostream.h> +#include <iostream> #define DATA_BEGIN ((char) 2) #define DATA_END ((char) 5) #define DATA_ESCAPE ((char) 27) +using namespace std; + static int counter= 0; void Best, Zoltan
_______________________________________________ Texmacs-dev mailing list [email protected] https://lists.gnu.org/mailman/listinfo/texmacs-dev
