Index: /trunk/build.xml
===================================================================
--- /trunk/build.xml	(revision 13278)
+++ /trunk/build.xml	(revision 13279)
@@ -19,4 +19,5 @@
         <property name="test.dir" location="${base.dir}/test"/>
         <property name="src.dir" location="${base.dir}/src"/>
+        <property name="noJavaFX" value="1"/>
         <property name="build.dir" location="${base.dir}/build"/>
         <property name="dist.dir" location="${base.dir}/dist"/>
Index: /trunk/geticons.pl
===================================================================
--- /trunk/geticons.pl	(revision 13278)
+++ /trunk/geticons.pl	(revision 13279)
@@ -169,5 +169,5 @@
       if($haveicons{"$1.png"})
       {
-        print STDERR "File $1 exists twice as .svg and .png.\n";
+        print STDERR "$1: File exists twice as .svg and .png.\n";
       }
       # check for unwanted svg effects
@@ -181,5 +181,5 @@
           for my $x (split(/\s*;\s*/, $1))
           {
-            print STDERR "Style starts with minus for $ifile: $x\n" if $x =~ /^-/;
+            print STDERR "$ifile: Style starts with minus: $x\n" if $x =~ /^-/;
           }
         }
@@ -187,10 +187,10 @@
         {
           my $x = $1;
-          print STDERR "ViewBox has float values for $ifile: $x\n" if $x =~ /\./;
+          print STDERR "$ifile: ViewBox has float values: $x\n" if $x =~ /\./;
         }
       }
       else
       {
-        print STDERR "Could not open file $ifile: $1";
+        print STDERR "$ifile: Could not open file: $1";
       }
     }
@@ -203,10 +203,10 @@
   if($img =~ /\.(png|svg)/)
   {
-    print STDERR "File $img does not exist!\n" if(!-f "images/$img");
+    print STDERR "$img: File does not exist!\n" if(!-f "images/$img");
     delete $haveicons{$img};
   }
   else
   {
-    print STDERR "File $img(.svg|.png) does not exist!\n" if(!-f "images/$img.png" && !-f "images/$img.svg");
+    print STDERR "$img(.svg|.png): File does not exist!\n" if(!-f "images/$img.png" && !-f "images/$img.svg");
     delete $haveicons{"$img.svg"};
     delete $haveicons{"$img.png"};
@@ -216,4 +216,4 @@
 for my $img (sort keys %haveicons)
 {
-  print "$img\n";
-}
+  print "$img: Unused image.\n";
+}
