Hello friends!

Anyone with skills in building on Windows care to comment on this?

---

** [bugs:#1186] winbuild chain should include .res to link arguments**

**Status:** open
**Labels:** windows build
**Created:** Mon Feb 04, 2013 10:34 AM UTC by Andrew Kurushin
**Last Updated:** Mon Feb 04, 2013 10:34 AM UTC
**Owner:** nobody

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)
[-----]

---

Sent from sourceforge.net because you indicated interest in 
<https://sourceforge.net/p/curl/bugs/1186/>

To unsubscribe from further messages, please visit 
<https://sourceforge.net/auth/prefs/>
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette:  http://curl.haxx.se/mail/etiquette.html

Reply via email to