Mike -
> The following is a resend of a patch from 6 months ago to enable
> optimized building with to use VC8 features and remove compiler option
> warnings.
I had a few problems with this patch, which is why I didn't send it out
yet. Also, it collides with a patch from George Reilly for Win64
support, which also has a problem.
> @@ -320,7 +322,44 @@ INTDIR=$(OBJDIR)
> INTDIR=$(OBJDIR)
> OUTDIR=$(OBJDIR)
>
> +# Derive version of VC being used from nmake if not specified
> +!if "$(MSVCVER)" == ""
> +!if "$(_NMAKE_VER)" == ""
> +MSVCVER = "4.0"
The "4.0" needs to be 4.0 (no quotes) for this to work with old nmake.
> # Convert processor ID to MVC-compatible number
> +!if $(MSVCVER) != "8.0"
But we do need quotes here:
!if "$(MSVCVER)" != "8.0"
Other "if" for MSVCVER are similar.
--
A parent can be arrested if his child cannot hold back a burp during a church
service.
[real standing law in Nebraska, United States of America]
/// Bram Moolenaar -- [EMAIL PROTECTED] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ download, build and distribute -- http://www.A-A-P.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---