winbuild does not include version info for .dll .exe
following diff will fix this
[-----]
Index: winbuild/MakefileBuild.vc
===================================================================
--- winbuild/MakefileBuild.vc (revision)
+++ winbuild/MakefileBuild.vc (working copy)
@@ -374,9 +374,15 @@
!include CURL_OBJS.inc
!include LIBCURL_OBJS.inc
+!IF "$(AS_DLL)" == "true"
+LIB_OBJS = $(LIBCURL_OBJS) $(RESOURCE)
+!ELSE
LIB_OBJS = $(LIBCURL_OBJS)
-EXE_OBJS = $(CURL_OBJS)
+!ENDIF
+EXE_OBJS = $(CURL_OBJS) $(CURL_DIROBJ)\curl.res
+
+
all : $(TARGET) $(PROGRAM_NAME)
package: $(TARGET)
[-----]
Seems to work fine for 7.28.1, please commit upstreams. I'll try and see if cmake behaves differently.
cmake already does this fine.
Any chance you can add the real diff -u output as an attachment here? I can't apply that text part since the web form mangled the text... :-/
Yes, see the following attachment
Sorry, broken patch, next attempt here.
Thanks, fixed and pushed!