In olsr-topology-view (OTV) the ImageMagick program is only required to display the finish graphic on the screen. If you are running OTV on MacOS you can avoid installing ImageMagick and use the Preview application to display the images instead. Just replace the existing code around line 149 with the following: if ($SHOW) {
if ($^O == "darwin") {
system "/usr/bin/open -a preview $TOPPATH/$NAME.$EXT &";
} else {
if ($ROOTWIN) {
system "display -window root -backdrop $TOPPATH/$NAME.$EXT &";
} elsif ($start) {
system "display $FULLOPT -update 5 $TOPPATH/$NAME.$EXT &";
$start = 0;
}
}
}
|