mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
* bjam; bump to version 3.1.12 * bjam; make it possible to build in MinGW/MSYS shell * bjam; move profile code to debug.h/c to make it available for use everywhere * bjam; cache all filesystem query operations, Unix and Windows only, include PWD and scanning * bjam; add memory profile info, and sprinkle throught code * bbv2; rewrite some while() loops into for() loops to reduce time and memory * bbv2; keep a single instance counter instead of one per type to reduce memory use * bjam+bbv2; change NORMALIZE_PATH builtin to join path parts to reduce memory use [SVN r31177]
18 lines
476 B
C
18 lines
476 B
C
/*
|
|
* Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
|
|
*
|
|
* This file is part of Jam - see jam.c for Copyright information.
|
|
*/
|
|
|
|
/* Keep JAMVERSYM in sync with VERSION. */
|
|
/* It can be accessed as $(JAMVERSION) in the Jamfile. */
|
|
|
|
#define VERSION_MAJOR 3
|
|
#define VERSION_MINOR 1
|
|
#define VERSION_PATCH 12
|
|
#define VERSION_MAJOR_SYM "03"
|
|
#define VERSION_MINOR_SYM "1"
|
|
#define VERSION_PATCH_SYM "12"
|
|
#define VERSION "3.1.12"
|
|
#define JAMVERSYM "JAMVERSION=3.1"
|