|
From: petter_fryklund on 17 Jan 2008 11:05 Well finding page was worth nothing, download links are missing :( I would have liked zip, since on Vista ... Regards, Petter
From: Simon Wright on 17 Jan 2008 19:54 petter_fryklund(a)hotmail.com writes: > Well finding page was worth nothing, download links are missing :( I > would have liked zip, since on Vista ... OK, OK already! I've uploaded the historical 8.3.2, 8.4.1 releases so that there is at least something there. Winzip understands .tar.gz .. so does PowerArchiver, nice alternative. If Vista native doesn't .. well, the 8.4.1 release is a zip file. The point is, I'm still working on tcladashell and didn't think I was at a release-worthy stage .. hmm, forgot about 'release early and often' ..
From: Simon Wright on 17 Jan 2008 19:56 Martin Krischik <krischik(a)users.sourceforge.net> writes: > Jean-Pierre Rosen schrieb: >> petter_fryklund(a)hotmail.com a �crit : >>> I used: http://tcladashell.sourceforge.net/docs.htm >>> >> but http://tcladashell.sourceforge.net/ seems to have been pirated too > > One could of course register an user remove the WikiSPAM. > > Apart from that I encourage every Wiki to ban unregistered users. On > newer MediWikis I would even ban non E-mail-confirmed users. May be easier to move to SF's own wiki engine. Yet another %(^*^& wiki markup to learn ... Thanks for fixing the trashed page.
From: Martin Krischik on 18 Jan 2008 02:10 Simon Wright schrieb: > Martin Krischik <krischik(a)users.sourceforge.net> writes: > >> Jean-Pierre Rosen schrieb: >>> petter_fryklund(a)hotmail.com a écrit : >>>> I used: http://tcladashell.sourceforge.net/docs.htm >>>> >>> but http://tcladashell.sourceforge.net/ seems to have been pirated too >> One could of course register an user remove the WikiSPAM. >> >> Apart from that I encourage every Wiki to ban unregistered users. On >> newer MediWikis I would even ban non E-mail-confirmed users. > > May be easier to move to SF's own wiki engine. Yet another %(^*^& wiki > markup to learn ... Indeed. Otherwise it is less maintenance trouble and it comes with popper user management. Not that MediaWiki does not - it can just be troublesome - I once tried to set up E-Mail confirmations and failed. Martin -- mailto://krischik(a)users.sourceforge.net Ada programming at: http://ada.krischik.com
From: petter_fryklund on 18 Jan 2008 11:05
I used Zipeg. SInce I do not have any make, and hopefully will not nedd one, I created my gpr file in src directory and compiled all TASH packages. I then created:- with "../src/tash"; project Plang is for Languages use ("Ada"); for Source_Dirs use ("."); for Object_Dir use "."; for Exec_Dir use "..\bin"; for Main use ("plang.adb"); package Builder is for Default_Switches ("ada") use ("-g", "-gnatQ"); end Builder; package Binder is for Default_Switches ("ada") use ("-static"); end Binder; package Linker is for Default_Switches ("ada") use ("-g", "-L C:\Tcl\lib \tcl84.lib"); end Linker; package Compiler is for Default_Switches ("Ada") use ("-g", "-gnato", "-fstack- check", "-gnatVa"); end Compiler; end Plang; in the apps directory and tried to build the Plang program, but the -L was not effective in resolving references to ie Tcl_AppendStringsToObj. What am I doing wrong this time? Regards, Petter |