Update of /cvsroot/super-tux/supertux/mk/jam
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27499/mk/jam
Modified Files:
jamcompatibility.jam
Log Message:
require jam 2.5
Index: jamcompatibility.jam
===================================================================
RCS file: /cvsroot/super-tux/supertux/mk/jam/jamcompatibility.jam,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- jamcompatibility.jam 24 Nov 2004 14:10:24 -0000 1.2
+++ jamcompatibility.jam 25 Nov 2004 15:54:49 -0000 1.3
@@ -18,9 +18,11 @@
}
}
-if $(JAMVERSION) < 2.4
+# we can't use boostjam at the moment as it still has the bug from jam 2.4 where
+# settings variables on header targets doesn't work
+if $(JAMVERSION) <= 2.4
{
- EXIT "Error: This buildsystem requires jam version 2.4 or later." ;
+ EXIT "Error: This buildsystem requires jam version 2.5 or later." ;
}
# don't confuse users for now...
#if $(JAMVERSION) = 2.4 & $(JAM_DEBUG)
|