2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

mingw patch for bootstrap from Stephan T. Lavavej, refs #8762

[SVN r86460]
This commit is contained in:
Eric Niebler
2013-10-26 21:02:15 +00:00
parent f6fc8eb665
commit 5e39960efd
2 changed files with 5 additions and 5 deletions

View File

@@ -489,8 +489,8 @@ jam.source =
make.c make1.c mem.c object.c option.c output.c parse.c pathsys.c regexp.c
rules.c scan.c search.c subst.c w32_getreg.c timestamp.c variable.c
modules.c strings.c filesys.c builtins.c class.c cwd.c native.c md5.c
modules/set.c modules/path.c modules/regex.c modules/property-set.c
modules/sequence.c modules/order.c ;
[ .path modules set.c ] [ .path modules path.c ] [ .path modules regex.c ]
[ .path modules property-set.c ] [ .path modules sequence.c ] [ .path modules order.c ] ;
if $(OS) = NT
{
jam.source += execnt.c filent.c pathnt.c ;

View File

@@ -247,18 +247,18 @@ MKJAMBASE_SOURCES="mkjambase.c"
BJAM_SOURCES="\
command.c compile.c constants.c debug.c execcmd.c frames.c function.c glob.c\
hash.c hdrmacro.c headers.c jam.c jambase.c jamgram.c lists.c make.c make1.c\
object.c option.c output.c parse.c pathsys.c pathunix.c regexp.c rules.c\
object.c option.c output.c parse.c pathsys.c regexp.c rules.c\
scan.c search.c subst.c timestamp.c variable.c modules.c strings.c filesys.c\
builtins.c class.c cwd.c native.c md5.c w32_getreg.c modules/set.c\
modules/path.c modules/regex.c modules/property-set.c modules/sequence.c\
modules/order.c"
case $BOOST_JAM_TOOLSET in
mingw)
BJAM_SOURCES="${BJAM_SOURCES} execnt.c filent.c"
BJAM_SOURCES="${BJAM_SOURCES} execnt.c filent.c pathnt.c"
;;
*)
BJAM_SOURCES="${BJAM_SOURCES} execunix.c fileunix.c"
BJAM_SOURCES="${BJAM_SOURCES} execunix.c fileunix.c pathunix.c"
;;
esac