Bugs item #1276016, was opened at 2005-08-29 13:23
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=100976&aid=1276016&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: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Daniel Stenberg (bagder)
Summary: libcurl build failure on Win32
Initial Comment:
I just downloaded the generic source for 7.14.0 and tried
to build libcurl with the .DSW file provided (I use VC7,
but that should not affect anything). The problem seems
to be that when defining CURL_EXTERN, the code
checks for the BUILDING_LIBCURL preprocessor
symbol, which is not present in the .DSW file. Instead,
a preprocessor symbol called CURLLIB_EXPORTS is
present. If I change curl.h line 55 from
#if defined(BUILDING_LIBCURL)
to
#if defined(BUILDING_LIBCURL) || defined
(CURLLIB_EXPORTS)
everything builds fine. I supposed I could also have
added BUILDING_LIBCURL to the preprocessor symbol
list, but this worked fine for me.
Thanks,
Kevin Lussier
kevin_at_codegreennetworks.com
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=100976&aid=1276016&group_id=976
_______________________________________________
http://cool.haxx.se/cgi-bin/mailman/listinfo/curl-tracker
Received on 2005-08-29