The following code does not work in recent builds on linux:
[quote]URL url(“http://www.rawmaterialsoftware.com”);
String s = url.readEntireTextStream();
[/quote]
Seems to be related to the default port in juce_linux_Network.cpp. Changing port = 0; // indicates the default port
to port = 80;
fixes it.