diff options
Diffstat (limited to 'auto/cc/msvc')
| -rw-r--r-- | auto/cc/msvc | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/auto/cc/msvc b/auto/cc/msvc index 2f1e8bcd5..5c8acc1b1 100644 --- a/auto/cc/msvc +++ b/auto/cc/msvc @@ -116,19 +116,25 @@ ngx_binout="-Fe" ngx_objext="obj" ngx_binext=".exe" -# Borland make -#ngx_long_start='@&&| -# ' -#ngx_long_end='|' +if [ "$BMAKE" = nmake ]; then + # MS nmake -# MS nmake -ngx_long_start='@<< + ngx_long_start='@<< ' -ngx_long_end='<<' -ngx_long_regex_cont=' \ + ngx_long_end='<<' + ngx_long_regex_cont=' \ ' -ngx_long_cont=' + ngx_long_cont=' ' + +else + # Borland make + + ngx_long_start='@&&| + ' + ngx_long_end='|' +fi + # MSVC understand / in path #ngx_regex_dirsep='\\' #ngx_dirsep="\\" |
