$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] Probably old question
From: Douglas Photiadis (douglas.photiadis_at_[hidden])
Date: 2015-05-07 12:15:53
Thanks for the suggestion. In the build.c file, the file
winioctl.h
is included only for NT:
#ifdef OS_NT
#include <windows.h>
#ifndef FSCTL_GET_REPARSE_POINT
/* MinGW's version of windows.h is missing this, so we need
* to include winioctl.h directly
*/
#include <winioctl.h>
#endif
#endif
and on my machine I don't find a version of it. The build will only work for NT and not Windows 7?
Is there a workaround?
Thanks, Doug