Daniel Stenberg
|
0373758359
|
added the better debug option logic from curl by adding acinclude.m4 to the
configure stuff
|
2004-02-25 14:32:39 +00:00 |
|
Daniel Stenberg
|
df94c7aedc
|
Based on a patch by Greg Hewgill I modified how long long is used, as we
can use a 64bit type with MSVC that is a long long equivalent.
|
2004-02-25 14:15:38 +00:00 |
|
Daniel Stenberg
|
6bd2de0c42
|
set debug options when using the icc compiler
|
2004-02-25 14:14:30 +00:00 |
|
Daniel Stenberg
|
82c31256e1
|
better formatting of the share options
|
2004-02-25 12:34:19 +00:00 |
|
Daniel Stenberg
|
403cbbe0c4
|
mark the function name
|
2004-02-25 12:32:33 +00:00 |
|
Daniel Stenberg
|
9a7e3437ae
|
added CURLOPT_SHARE
|
2004-02-25 12:20:41 +00:00 |
|
Daniel Stenberg
|
4fa58560bf
|
Moved most of the set-debug-options-depending-on-compiler logic to the new
CURL_CC_DEBUG_OPTS function in acinclude.m4
|
2004-02-25 10:19:02 +00:00 |
|
Daniel Stenberg
|
be62b27ce2
|
Output $CC and $CFLAGS as well. A Tor Arntsen patch.
|
2004-02-25 09:03:09 +00:00 |
|
Daniel Stenberg
|
3be66f3a03
|
Don't check for HAVE_ defines in this header file, it is meant to be public
and we can't depend on configure-defines in it. This logic is borrowed from
the public curl headers.
|
2004-02-25 07:22:00 +00:00 |
|
Daniel Stenberg
|
089bdaed00
|
fix
|
2004-02-25 07:17:31 +00:00 |
|
Daniel Stenberg
|
0d3674129f
|
Dan Fandrich fixed a minor flaw in Dominick's fix!
|
2004-02-25 06:37:42 +00:00 |
|
Daniel Stenberg
|
fce6783be4
|
check for a few basic header files
|
2004-02-23 16:20:42 +00:00 |
|
Daniel Stenberg
|
48bc26e7e3
|
include sys/select.h
|
2004-02-23 16:20:31 +00:00 |
|
Daniel Stenberg
|
f128fae705
|
fixed some warnings in the (both new and old) base64 usage
|
2004-02-23 16:09:39 +00:00 |
|
Daniel Stenberg
|
800fa31b65
|
features no one seem to care much about are now moved over to the 7.11.2
release
|
2004-02-23 16:04:16 +00:00 |
|
Daniel Stenberg
|
2ae4420869
|
make newer MSCV7 compilers use _strtoi64() as a strtoll() replacement
|
2004-02-23 14:24:49 +00:00 |
|
Daniel Stenberg
|
8ba042cf88
|
limit rate and windows timeouts
|
2004-02-23 13:48:27 +00:00 |
|
Daniel Stenberg
|
7adf43c1c5
|
ares_free_errmem is gone
|
2004-02-23 13:35:28 +00:00 |
|
Daniel Stenberg
|
d007e5615c
|
unused and now removed
|
2004-02-23 13:33:18 +00:00 |
|
Daniel Stenberg
|
888eec833c
|
Removed getpass from here. The fact this still was present here indicates
that this file is out of date!
|
2004-02-23 12:01:10 +00:00 |
|
Daniel Stenberg
|
2911e63bc2
|
curl_off_t is 8 bytes big on windows
|
2004-02-23 11:59:28 +00:00 |
|
Daniel Stenberg
|
34d247bc4e
|
switch the arguments according to the c source
|
2004-02-23 11:44:03 +00:00 |
|
Daniel Stenberg
|
99bc7e5fd3
|
oops, the decode() function got its arguments reversed in my cleanup
operation!
|
2004-02-23 11:39:21 +00:00 |
|
Daniel Stenberg
|
0b1f7995c5
|
correct the input data structs
|
2004-02-23 09:01:08 +00:00 |
|
Daniel Stenberg
|
f35c28214e
|
use size_t to keep strlen() results
|
2004-02-23 08:38:49 +00:00 |
|
Daniel Stenberg
|
35fd1365ae
|
simplied how create_hostcache_id() is used, and also its function somewhat
cleared up some ssize_t/size_t mixups
|
2004-02-23 08:35:57 +00:00 |
|
Daniel Stenberg
|
f493081004
|
adjusted to the modified base64 protos
|
2004-02-23 08:24:53 +00:00 |
|
Daniel Stenberg
|
e1b5e15431
|
More size_t cleanups in the base64 functions.
|
2004-02-23 08:22:43 +00:00 |
|
Daniel Stenberg
|
1aba4c519b
|
The base64 encode function now takes a size_t for size, not an int as
previously.
|
2004-02-23 08:07:55 +00:00 |
|
Daniel Stenberg
|
ae76a67566
|
more int vs long/size_t fixes after icc compiler warnings
|
2004-02-23 08:04:31 +00:00 |
|
Daniel Stenberg
|
76241d0a02
|
more int/long fixes after icc "remarks"
|
2004-02-23 08:00:56 +00:00 |
|
Daniel Stenberg
|
89227a9d75
|
next_id is an unsigned short, typecast the assign to prevent picky compilers
to warn
|
2004-02-23 07:57:44 +00:00 |
|
Daniel Stenberg
|
dfb5090e0f
|
typecase the bitfiddling results since we get a long and we store an int,
they may not be of the size size
|
2004-02-23 07:55:58 +00:00 |
|
Daniel Stenberg
|
c7fe8a7a11
|
make ares_expand_name() take a long * instead of an int *, since we do
pointer arithmetic (ptr1 - ptr2) and to do that properly on 64bit we need
long
|
2004-02-23 07:52:20 +00:00 |
|
Daniel Stenberg
|
7174ca7a20
|
strlen() returns a size_t, which might be larger than int on some platforms
|
2004-02-23 07:46:59 +00:00 |
|
Daniel Stenberg
|
2e61fde07f
|
argh, use single-quotes instead of double ones to make $Revision appear
|
2004-02-23 07:32:45 +00:00 |
|
Daniel Stenberg
|
41263f7d88
|
use the proper source header, and set the version string to this file's
revision number
|
2004-02-23 07:17:13 +00:00 |
|
Daniel Stenberg
|
02095ba0e1
|
cd back to the root path before removing the build dir, since some systems
refuse to remove the dir otherwise!
|
2004-02-23 07:08:59 +00:00 |
|
Daniel Stenberg
|
32a678eab3
|
Dominick Meglio's fix for supporting multiple names in the Nameserver key
on Windows.
|
2004-02-22 22:42:20 +00:00 |
|
Daniel Stenberg
|
bd7ba3bde6
|
this code uses no long long, so we can have warnings about them
|
2004-02-22 22:36:36 +00:00 |
|
Daniel Stenberg
|
0ffec4272a
|
the missing part of Gisle Vanem's connect-timeout fix for win32
|
2004-02-22 22:31:24 +00:00 |
|
Daniel Stenberg
|
ea4cd4d8aa
|
-Wno-format-nonliteral does not exist in my gcc 2.96, only use that with
newer versions
|
2004-02-21 16:56:01 +00:00 |
|
Daniel Stenberg
|
c7775c59bf
|
mention in --limit-rate that --speed-limit might ruin the limiting slightly.
|
2004-02-21 16:18:57 +00:00 |
|
Daniel Stenberg
|
243bd5bbb4
|
David Byron's fix to allow the speed-limit logic work even if you set
limit-rate. It does work on the expense of the rate limiter.
|
2004-02-21 15:08:21 +00:00 |
|
Daniel Stenberg
|
4bde770169
|
added some extra typecasts to prevent compiler warnings when converting
int to various types
|
2004-02-21 15:05:46 +00:00 |
|
Daniel Stenberg
|
9af7e46f72
|
inlcude krb4.h to get the proto for Curl_krb_kauth() to satisfy picky
compilers
|
2004-02-21 14:57:29 +00:00 |
|
Daniel Stenberg
|
7d844c430c
|
Gisle Vanem brings name resolving timeout possibilities to windows people.
This works by magicly starting up a new thread that can be killed when the
timeout is reached. testtesttest!
|
2004-02-20 16:41:50 +00:00 |
|
Daniel Stenberg
|
4f953b6459
|
that icc attempt in configure
|
2004-02-20 16:29:57 +00:00 |
|
Daniel Stenberg
|
44995d6877
|
Some compilers warn on completely empty source files, we provide a blank
one to prevent that.
|
2004-02-20 16:22:47 +00:00 |
|
Daniel Stenberg
|
2ebc821558
|
Convert functions to ANSI-style declaration to prevent compiler warnings
|
2004-02-20 16:18:26 +00:00 |
|