Hi
I am running root on MAC OS 10.9. It worked fine, but recently I installed some new software which seems to have messed up root? I don’t quite know what exactly it was but I now get the following error message
root [0] .x plot_test.C
dlopen error: dlopen(/opt/local/lib/root/libASImage.so, 9): Library not loaded: /opt/local/lib/libpng15.15.dylib
Referenced from: /opt/local/lib/root/libASImage.so
Reason: image not found
Load Error: Failed to load Dynamic link library /opt/local/lib/root/libASImage.so
Error in TGHScrollBar::TGHScrollBar: arrow_.xpm not found
Error in TGVScrollBar::TGVScrollBar: arrow_.xpm not found
*** Break *** segmentation violation
Generating stack trace…
my test program only defines a Canvas
#include <math.h>
#include
#include
void plot_test(){
gROOT->SetStyle(“Plain”);
gStyle->SetOptStat(0);
gStyle->SetOptFit(1111);
gStyle->SetPalette(1);
TCanvas *c = new TCanvas("output/test", "test", 0, 0, 750, 600);
}
if I do not define the Canvas, the program runs without error message
thanks for any help
best
fl