Yang Tse
4882078469
attempt to workaround icc 9.1 optimizer induced problem
2009-04-19 05:20:04 +00:00
Daniel Stenberg
991b120eee
escape the ' properly
2009-04-18 22:48:28 +00:00
Daniel Stenberg
f278d177f9
63. When CURLOPT_CONNECT_ONLY is used, the handle cannot reliably be re-used
...
for any further requests or transfers. The work-around is then to close that
handle with curl_easy_cleanup() and create a new. Some more details:
http://curl.haxx.se/mail/lib-2009-04/0300.html
2009-04-18 22:18:35 +00:00
Gisle Vanem
53b2ff4b04
Added 'slist.obj'.
2009-04-18 16:54:15 +00:00
Gisle Vanem
0c89d71aee
Added HAVE_LIMITS_H.
2009-04-18 16:50:09 +00:00
Gisle Vanem
b746bf7814
Added '-DHAVE_LIMITS_H'.
2009-04-18 16:49:29 +00:00
Gisle Vanem
f11969015a
Avoid compiler warning about unused argument.
2009-04-18 09:59:42 +00:00
Daniel Stenberg
f1b820e5fc
mention Pramod Sharma and "persistent connections when doing FTP over a HTTP proxy"
2009-04-17 22:36:13 +00:00
Daniel Stenberg
7356ff0b18
As Jeff Pohlmeyer suggested: "pointer to 'char *'" is now instead put:
...
"pointer to a char pointer".
2009-04-17 12:55:09 +00:00
Daniel Stenberg
30f7a2ff20
- Pramod Sharma reported and tracked down a bug when doing FTP over a HTTP
...
proxy. libcurl would then wrongly close the connection after each
request. In his case it had the weird side-effect that it killed NTLM auth
for the proxy causing an inifinite loop!
I added test case 1098 to verify this fix. The test case does however not
properly verify that the transfers are done persistently - as I couldn't
think of a clever way to achieve it right now - but you need to read the
stderr output after a test run to see that it truly did the right thing.
2009-04-17 12:48:24 +00:00
Yang Tse
f6b55fae79
remove compiler options used while debugging the icc 9.1 optimizer issue
2009-04-17 07:48:37 +00:00
Yang Tse
8aa88f4d36
re-enable all tests for all icc autobuilds
2009-04-17 07:30:56 +00:00
Yang Tse
ce7b565595
further narrow the use of the icc 9.1 optimizer workaround
2009-04-17 07:30:25 +00:00
Yang Tse
41fd08bb0d
attempt to workaround icc 9.1 optimizer induced problem
2009-04-16 08:31:09 +00:00
Yang Tse
d0a930cd44
moved HAVE_LIMITS_H to common defines
2009-04-15 22:58:30 +00:00
Yang Tse
9bb1854398
Set HP-UX compiler warning level back to the one that exposes
...
the socklen_t issue on this platform.
2009-04-15 22:54:25 +00:00
Gunter Knauf
f7400212fc
moved HAVE_LIMITS_H to common defines (no idea why I didnt this initially already)
2009-04-15 04:11:33 +00:00
Yang Tse
6434b42481
HAVE_LIMITS_H definition for NetWare CLIB
2009-04-14 23:51:12 +00:00
Daniel Stenberg
dd0b38b32f
first take at bundling cmake-related files in the tarball
2009-04-14 22:00:37 +00:00
Daniel Stenberg
7816db8e8a
things in the pipe right now
2009-04-14 22:00:18 +00:00
Yang Tse
9cc6ab3922
use HAVE_LIMITS_H symbol to protect limits.h inclusion
2009-04-14 13:50:32 +00:00
Yang Tse
2c27e24bb4
include <limits.h> for INT_MAX definition
2009-04-14 13:26:06 +00:00
Yang Tse
c382c550e7
fix compiler warning: implicit conversion shortens 64-bit value into a 32-bit value
2009-04-14 12:53:53 +00:00
Benoit Neil
c663494c69
(Minor change - From Piotr Dobrogost) Moved a line.
2009-04-14 09:44:09 +00:00
Daniel Stenberg
97f27ea585
Kamil Dudka's follow-up fix
2009-04-14 09:40:53 +00:00
Daniel Stenberg
379bfa5a36
- bug report #2727981 ( http://curl.haxx.se/bug/view.cgi?id=2727981 ) by Martin
...
Storsjo pointed out how setting CURLOPT_NOBODY to 0 could be downright
confusing as it set the method to either GET or HEAD. The example he showed
looked like:
curl_easy_setopt(curl, CURLOPT_PUT, 1);
curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
The new way doesn't alter the method until the request is about to start. If
CURLOPT_NOBODY is then 1 the HTTP request will be HEAD. If CURLOPT_NOBODY is
0 and the request happens to have been set to HEAD, it will then instead be
set to GET. I believe this will be less surprising to users, and hopefully
not hit any existing users badly.
2009-04-13 18:01:02 +00:00
Daniel Stenberg
235c0077b8
- Toshio Kuratomi reported a memory leak problem with libcurl+NSS that turned
...
out to be leaking cacerts. Kamil Dudka helped me complete the fix. The issue
is found in Redhat's bug tracker:
https://bugzilla.redhat.com/show_bug.cgi?id=453612
There are still memory leaks present, but they seem to have other reasons.
2009-04-13 17:42:10 +00:00
Yang Tse
c621546bd6
fix compiler warning: implicit conversion shortens 64-bit value into a 32-bit value
2009-04-13 07:18:39 +00:00
Yang Tse
aa330b8240
improve stunnel version detection
2009-04-13 03:47:16 +00:00
Dan Fandrich
e43606eb4d
Added new libcurl source files to Symbian OS build files.
...
Improved Symbian support for SSL.
2009-04-11 07:06:34 +00:00
Yang Tse
6a378a28b4
Use 'curl_socket_t' instead of 'int' for socket.
...
Avoid unnecessary'if-else' nesting.
2009-04-11 06:36:47 +00:00
Yang Tse
95368d9cb4
fix compiler warning: enumerated type mixed with another type
2009-04-11 02:11:02 +00:00
Yang Tse
74f9c570ea
Adjust comment
2009-04-10 02:58:01 +00:00
Yang Tse
eed4a13b3b
Daniel Johnson improved the MacOSX-Framework shell script to now perform all
...
the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64
libcurl.framework. Four way fat framework requires OS X 10.5 SDK or later.
2009-04-10 02:50:21 +00:00
Benoit Neil
7e9f7659b3
(Minor update) Moved some utilities to a separate file.
2009-04-09 21:16:28 +00:00
Benoit Neil
4d396169c8
Cleaned up the custom definition I added (replaced by CURL_STATICLIB)
2009-04-09 19:59:38 +00:00
Gunter Knauf
4cd950900b
some minor Makefile tweaks for latest libssh2.
2009-04-09 02:50:09 +00:00
Gunter Knauf
2b96c3f5ce
add back most likely acciedently removed function name justtimeout to fix autobuild breaks.
2009-04-09 02:46:56 +00:00
Yang Tse
63fad159e8
Skip test #558 and #559 also when using a Win32 DLL
2009-04-09 01:24:41 +00:00
Benoit Neil
e5f1480a38
(Minor update) Added labal prefixes to tests targets
2009-04-08 23:48:07 +00:00
Benoit Neil
020955ebc2
Added special define for tests that directly include libcurl sources.
2009-04-08 23:35:09 +00:00
Benoit Neil
3733fa02ee
Made the windows .lib addition cleaner.
2009-04-08 23:20:04 +00:00
Benoit Neil
7037e4a4b1
Renamed a variable
2009-04-08 22:21:25 +00:00
Benoit Neil
0e98f938c4
Fixed missing HAVE_PROCESS_H (caused a warning)
2009-04-08 20:54:36 +00:00
Benoit Neil
55d0c29f4a
Added newline ad the end of generated hugehelp.c (the "default" one, when it hasn't been generated before).
2009-04-08 20:29:50 +00:00
Gisle Vanem
59997ecad5
Avoid warnings when HAVE_ALRM and SIGALRM are not defined.
2009-04-08 18:37:11 +00:00
Gisle Vanem
6e2f0833ad
#ifdef around variables to squelsh warnings.
2009-04-08 18:31:54 +00:00
Benoit Neil
25f626cc52
Fixed compile defines in CMake scripts
2009-04-08 11:42:45 +00:00
Yang Tse
ece891d6db
Sun compilers specific preprocessor block removed from curlbuild.h.dist
2009-04-08 01:25:34 +00:00
Benoit Neil
702355da47
(Minor update) Modified a comment, before going to sleep :)
2009-04-07 22:49:02 +00:00