diff --git a/historic/jam/src/boost-jam.spec b/historic/jam/src/boost-jam.spec index 37277ecf0..189eb4631 100644 --- a/historic/jam/src/boost-jam.spec +++ b/historic/jam/src/boost-jam.spec @@ -1,5 +1,5 @@ Name: boost-jam -Version: 3.1.8 +Version: 3.1.9 Summary: Build tool Release: 1 Source: %{name}-%{version}.tgz diff --git a/historic/jam/src/build.jam b/historic/jam/src/build.jam index 4d9bb592f..b0109d63e 100644 --- a/historic/jam/src/build.jam +++ b/historic/jam/src/build.jam @@ -14,7 +14,7 @@ else { . = "." ; } # Info about what we are building. NAME = boost-jam ; -VERSION = 3$(.)1$(.)8 ; +VERSION = 3$(.)1$(.)9 ; RELEASE = 1 ; LICENSE = 1_0 ; diff --git a/historic/jam/src/debian/changelog b/historic/jam/src/debian/changelog index 1c0c05bf4..915604a83 100644 --- a/historic/jam/src/debian/changelog +++ b/historic/jam/src/debian/changelog @@ -1,3 +1,9 @@ +bjam (3.1.9-1) unstable; urgency=low + + * Implement NATIVE_FILE builtin and several native rules. + + -- Vladimir Prus Thu, 11 Dec 2003 13:15:26 +0300 + bjam (3.1.8-1) unstable; urgency=low * New upstream release. diff --git a/historic/jam/src/index.html b/historic/jam/src/index.html index c215aabc0..9840ebb00 100644 --- a/historic/jam/src/index.html +++ b/historic/jam/src/index.html @@ -134,7 +134,7 @@ facilitate its use in the Boost Build System, but should be backward compatible with Perforce Jam.

-

This is version 3.1.8 of BJam and is based on version 2.4 of Jam/MR:

+

This is version 3.1.9 of BJam and is based on version 2.4 of Jam/MR:

 /+\
 +\  Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
diff --git a/historic/jam/src/jam.c b/historic/jam/src/jam.c
index 40313962e..6f1cbae18 100644
--- a/historic/jam/src/jam.c
+++ b/historic/jam/src/jam.c
@@ -323,7 +323,7 @@ int  main( int argc, char **argv, char **arg_environ )
     {
    /* Pleace don't change the following line. The 'bump_version.py' script
        expect a specific format of it. */
-    char  *major_version = "03", *minor_version = "01", *changenum = "08";
+    char  *major_version = "03", *minor_version = "01", *changenum = "09";
     var_set( "JAM_VERSION",
              list_new( list_new( list_new( L0, newstr( major_version ) ), 
                                  newstr( minor_version ) ), 
diff --git a/historic/jam/src/patchlevel.h b/historic/jam/src/patchlevel.h
index c5594d04f..d18953e52 100644
--- a/historic/jam/src/patchlevel.h
+++ b/historic/jam/src/patchlevel.h
@@ -1,5 +1,5 @@
 /* Keep JAMVERSYM in sync with VERSION. */
 /* It can be accessed as $(JAMVERSION) in the Jamfile. */
 
-#define VERSION "3.1.8"
+#define VERSION "3.1.9"
 #define JAMVERSYM "JAMVERSION=3.1"
diff --git a/jam_src/boost-jam.spec b/jam_src/boost-jam.spec
index 37277ecf0..189eb4631 100644
--- a/jam_src/boost-jam.spec
+++ b/jam_src/boost-jam.spec
@@ -1,5 +1,5 @@
 Name: boost-jam
-Version: 3.1.8
+Version: 3.1.9
 Summary: Build tool
 Release: 1
 Source: %{name}-%{version}.tgz
diff --git a/jam_src/build.jam b/jam_src/build.jam
index 4d9bb592f..b0109d63e 100644
--- a/jam_src/build.jam
+++ b/jam_src/build.jam
@@ -14,7 +14,7 @@ else { . = "." ; }
 
 # Info about what we are building.
 NAME = boost-jam ;
-VERSION = 3$(.)1$(.)8 ;
+VERSION = 3$(.)1$(.)9 ;
 RELEASE = 1 ;
 LICENSE = 1_0 ;
 
diff --git a/jam_src/debian/changelog b/jam_src/debian/changelog
index 1c0c05bf4..915604a83 100644
--- a/jam_src/debian/changelog
+++ b/jam_src/debian/changelog
@@ -1,3 +1,9 @@
+bjam (3.1.9-1) unstable; urgency=low
+
+  * Implement NATIVE_FILE builtin and several native rules.
+
+ -- Vladimir Prus   Thu, 11 Dec 2003 13:15:26 +0300
+
 bjam (3.1.8-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/jam_src/index.html b/jam_src/index.html
index c215aabc0..9840ebb00 100644
--- a/jam_src/index.html
+++ b/jam_src/index.html
@@ -134,7 +134,7 @@
   facilitate its use in the Boost Build System, but should be backward
   compatible with Perforce Jam.

-

This is version 3.1.8 of BJam and is based on version 2.4 of Jam/MR:

+

This is version 3.1.9 of BJam and is based on version 2.4 of Jam/MR:

 /+\
 +\  Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
diff --git a/jam_src/jam.c b/jam_src/jam.c
index 40313962e..6f1cbae18 100644
--- a/jam_src/jam.c
+++ b/jam_src/jam.c
@@ -323,7 +323,7 @@ int  main( int argc, char **argv, char **arg_environ )
     {
    /* Pleace don't change the following line. The 'bump_version.py' script
        expect a specific format of it. */
-    char  *major_version = "03", *minor_version = "01", *changenum = "08";
+    char  *major_version = "03", *minor_version = "01", *changenum = "09";
     var_set( "JAM_VERSION",
              list_new( list_new( list_new( L0, newstr( major_version ) ), 
                                  newstr( minor_version ) ), 
diff --git a/jam_src/patchlevel.h b/jam_src/patchlevel.h
index c5594d04f..d18953e52 100644
--- a/jam_src/patchlevel.h
+++ b/jam_src/patchlevel.h
@@ -1,5 +1,5 @@
 /* Keep JAMVERSYM in sync with VERSION. */
 /* It can be accessed as $(JAMVERSION) in the Jamfile. */
 
-#define VERSION "3.1.8"
+#define VERSION "3.1.9"
 #define JAMVERSYM "JAMVERSION=3.1"
diff --git a/v2/kernel/bootstrap.jam b/v2/kernel/bootstrap.jam
index 089a62609..1bbbb04b8 100755
--- a/v2/kernel/bootstrap.jam
+++ b/v2/kernel/bootstrap.jam
@@ -6,9 +6,9 @@
 
 # First of all, check the jam version
 
-if $(JAM_VERSION:J="") < 030108
+if $(JAM_VERSION:J="") < 030109
 {
-    ECHO "error: Boost.Jam version 3.1.8 or later required" ;
+    ECHO "error: Boost.Jam version 3.1.9 or later required" ;
     EXIT ;
 }