MarkerStyle / Size / color not working on 5.25?

I recently installed ROOT 5.25 on my linux computer. Everything is fine, except that it seems not to understand SetMarkerStyle, SetMarkerColor or SetFillColor commands. It would only draw graphs with the default settings, ignoring further instructions.

Now, the odds are I’m missing some obvious library. I configured it with ./configure --enable-{qt,roofit,soversion,asimage,mathmore,minuit2} --prefix=/usr --with-python-{incdir=/usr/include/python2.6,libdir=/usr/lib}

And I link those libraries while compiling (I have the same problem using CINT anyway):

I cannot reproduce this. The following macro gives me the attached plot.

{
   TGraph *graph = new TGraph(10);
   graph->SetName("Graph");
   graph->SetTitle("");
   graph->SetFillColor(1);
   graph->SetLineColor(2);
   graph->SetLineWidth(4);
   graph->SetMarkerColor(4);
   graph->SetMarkerStyle(21);
   graph->SetMarkerSize(1.5);
   graph->SetPoint(0,-0.001066818,2.04042);
   graph->SetPoint(1,0.09850215,3.002051);
   graph->SetPoint(2,0.1998491,3.90358);
   graph->SetPoint(3,0.2994181,4.805109);
   graph->SetPoint(4,0.3989871,5.646536);
   graph->SetPoint(5,0.498556,-9.979966);
   graph->SetPoint(6,0.599903,7.209186);
   graph->SetPoint(7,0.699472,7.870307);
   graph->SetPoint(8,0.799041,8.471326);
   graph->SetPoint(9,0.8986099,8.952142);

   TH1F *Graph1 = new TH1F("Graph1","",100,0,0.99);
   Graph1->SetMinimum(-11.89121);
   Graph1->SetMaximum(10.80328);
   Graph1->SetDirectory(0);
   Graph1->SetStats(0);
   Graph1->GetXaxis()->SetTitle("X title");
   Graph1->GetYaxis()->SetTitle("Y title");
   graph->SetHistogram(Graph1);

   graph->Draw("ACP");
}