Daniel Stenberg
9418c349f1
Dominick Meglio fixed a missing comma
21 years ago
Daniel Stenberg
af26fa53f3
Dominick Meglio's new ares_expand_string() function
21 years ago
Daniel Stenberg
155aadf0b3
changed the long to int typecasts to see if icc 8.0 complains less on this
21 years ago
Daniel Stenberg
f5e1409f2a
ignore aclocal.m4
21 years ago
Daniel Stenberg
7325b5ca07
Gisle Vanem improved build on Windows.
21 years ago
Daniel Stenberg
3f01f1b772
mingw has str(n)casecmp() functions
21 years ago
Daniel Stenberg
9df1eda502
timezone dummy to build better on Windows - Gisle Vanem
21 years ago
Daniel Stenberg
69cfbb9f48
Gisle Vanem fixed the bad argc check
21 years ago
Daniel Stenberg
471b4a3564
this is generated, removed from CVS
21 years ago
Daniel Stenberg
401e862bf6
attempted typecase to silence the MIPSpro warning:
...
cc-1506 cc: REMARK File = ../../curl/ares/ares__read_line.c, Line = 46
There is an implicit conversion from "unsigned long" to "int"; rounding, sign
extension, or loss of accuracy may result.
if (!fgets(*buf + offset, *bufsize - offset, fp))
21 years ago
Daniel Stenberg
31c0b3b5cc
Dirk Manske fixed the attempt to install the removed errmem manpage
21 years ago
Daniel Stenberg
a881c1dfee
minor size_t fix to kill a warning
21 years ago
Daniel Stenberg
3ee8f19e0f
updated the debug option function from curl's acinclude.m4
21 years ago
Daniel Stenberg
481d5ac1b7
fixed a "comparison between signed and unsigned" warning
21 years ago
Daniel Stenberg
ff59e51250
minor fixes to avoid MIPSPro pedantic warnings
21 years ago
Daniel Stenberg
02ffff0b00
don't mix int and size_t, it generates warnings!
21 years ago
Daniel Stenberg
650fd8cee3
added the better debug option logic from curl by adding acinclude.m4 to the
...
configure stuff
21 years ago
Daniel Stenberg
ff2794fc5f
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.
21 years ago
Daniel Stenberg
cfe7ce7a57
fix
21 years ago
Daniel Stenberg
45efb3cc73
Dan Fandrich fixed a minor flaw in Dominick's fix!
21 years ago
Daniel Stenberg
74d3b56a0f
check for a few basic header files
21 years ago
Daniel Stenberg
27126cba25
include sys/select.h
21 years ago
Daniel Stenberg
4e10b07ab0
ares_free_errmem is gone
21 years ago
Daniel Stenberg
9682ecee84
unused and now removed
21 years ago
Daniel Stenberg
a58afac1f1
more int vs long/size_t fixes after icc compiler warnings
21 years ago
Daniel Stenberg
d0d3f7ff6c
more int/long fixes after icc "remarks"
21 years ago
Daniel Stenberg
33907a6f10
next_id is an unsigned short, typecast the assign to prevent picky compilers
...
to warn
21 years ago
Daniel Stenberg
c7c24e3de7
typecase the bitfiddling results since we get a long and we store an int,
...
they may not be of the size size
21 years ago
Daniel Stenberg
961876c001
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
21 years ago
Daniel Stenberg
3f0b19ea45
strlen() returns a size_t, which might be larger than int on some platforms
21 years ago
Daniel Stenberg
bcc693e966
Dominick Meglio's fix for supporting multiple names in the Nameserver key
...
on Windows.
21 years ago
Daniel Stenberg
3e2959f67c
this code uses no long long, so we can have warnings about them
21 years ago
Daniel Stenberg
bff8eca5ae
check for standard headers when --enable-debug is used
21 years ago
Daniel Stenberg
dd6dd055b3
I removed the socklen_t requirement from memdebug.h, so we don't need to
...
figure it out here anymore to build debug builds.
21 years ago
Daniel Stenberg
9264a4649d
The --enable-debug option really requires this to be built as part of curl.
...
When using it, we now set the include path to better find the devel curl
headers, and we check for the socklen_t type since the curl memdebug stuff
needs it.
21 years ago
Daniel Stenberg
c2f765495d
memdebug build, 'make' no longer builds the demo tools
21 years ago
Daniel Stenberg
4eddbaddfd
'make all' also builds the demos
21 years ago
Daniel Stenberg
438444b72f
include ares_private.h to make sure we get the memdebug stuff included
21 years ago
Daniel Stenberg
c0f9b28177
If CURLDEBUG is set we use the libcurl internal memdebug system to track
...
memory leaks etc.
21 years ago
Daniel Stenberg
41630bdc93
only build adig and ahost if 'make demos' is used
21 years ago
Daniel Stenberg
15d2d14259
don't assume we can use gcc 2.96+ options
21 years ago
Daniel Stenberg
59c69ebd1a
removed usage of unset variables (by a function that does nothing!)
21 years ago
Daniel Stenberg
87308b0e3a
install ares_version.h as well
21 years ago
Daniel Stenberg
cd6d19a990
Dirk Manske's fix to install ares_version.h as well
21 years ago
Daniel Stenberg
69d192ba1e
include process.h to get the _getpid() proto
21 years ago
Daniel Stenberg
d4c916822a
fixed "comparison between signed and unsigned" complaints
21 years ago
Daniel Stenberg
79c1e3ab26
don't use 'sin' as variable name as the picky compiler warnings complain
...
about it shadowing the function sin()
21 years ago
Daniel Stenberg
f06464edd2
fixing
21 years ago
Daniel Stenberg
49eceda4dd
prevent a compiler warning about a macro definition
21 years ago
Daniel Stenberg
c72a2f4af7
prevent the windows version to use global symbol names
...
added prototypes for the strcasecmp() functions
21 years ago