Bugs item #1380500, was opened at 2005-12-14 16:20
Message generated for change (Comment added) made by bagder
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=100976&aid=1380500&group_id=976
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: compile or build problem
Group: portability problem
>Status: Closed
>Resolution: Fixed
Priority: 3
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Daniel Stenberg (bagder)
Summary: Incorrect linkage in makefile.vc6 when building libcurl
Initial Comment:
curl-7.15.1, Windows XP SP2, MS VS .Net 2003.
According to naming scheme, "release-ssl-dll" means
"static libcurl using openssl as dll". But
lib/Makefile.vc6 specifies dll-linkage for
"release-ssl-dll" target, so link process for curl.exe
can't find libcurl.
Regards,
Kirill Vasiliev (redled_at_ornet.ru)
----------------------------------------------------------------------
>Comment By: Daniel Stenberg (bagder)
Date: 2005-12-24 00:41
Message:
Logged In: YES
user_id=1110
Thanks, this fix has now been committed to CVS!
----------------------------------------------------------------------
Comment By: kwas (kwas)
Date: 2005-12-14 22:32
Message:
Logged In: YES
user_id=1405186
Yes, now I have one:
--- Makefile.vc6.orig Tue Nov 08 15:34:54 2005
+++ Makefile.vc6.curr Thu Dec 15 00:17:40 2005
@@ -154,10 +154,10 @@
# release-ssl-dll
!IF "$(CFG)" == "release-ssl-dll"
-TARGET = $(LIB_NAME).dll
+TARGET = $(LIB_NAME).lib
DIROBJ = $(CFG)
LFLAGSSSL = "/LIBPATH:$(OPENSSL_PATH)\out32dll"
-LNK = $(LNKDLL) $(WINLIBS) /out:$(DIROBJ)\$(TARGET)
$(SSLLIBS) $(LFLAGSSSL) /IMPLIB:$(DIROBJ)\$(IMPLIB_NAME).lib
+LNK = $(LNKLIB) $(WINLIBS) $(SSLLIBS) $(LFLAGSSSL)
/out:$(DIROBJ)\$(TARGET)
CC = $(CCNODBG) $(RTLIB) $(CFLAGSSSL)
CFGSET = TRUE
!ENDIF
----------------------------------------------------------------------
Comment By: Daniel Stenberg (bagder)
Date: 2005-12-14 20:54
Message:
Logged In: YES
user_id=1110
You have any suggeted fix/patch ?
I forwarded this report to the curl-library mailing list as
I personally know very little about the MSVC makefiles and
how they should work.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=100976&aid=1380500&group_id=976
Received on 2005-12-24