Building Coccinella Dependencies

These are build instructions for a typical unix/linux system which is not MacOSX since you need some special configure switches in that case.

I currently have a kind of ad-hoc rule to keep packages which should be binary compatible in a common directory, but this method may prove wrong, so please give me a note in that case. The following code should be easy to understand for anyone if you also have a look at the possible values of the tcl_platform array:

    if {$this(platform) eq "unix"} {
	set machine $tcl_platform(machine)
	if {[regexp {[2-9]86} $tcl_platform(machine)]} {
	    set machine "i686"
	} elseif {$tcl_platform(machine) eq "x86_64"} {
	    # x86_64
set machine "i686" } set machineSpecPath [file join $tcl_platform(os) $machine]

You can look into the coccinella/bin/ directory tree for a few examples.