diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-06-13 23:04:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-06-13 23:04:44 +0000 |
commit | e22d75cd6e2b4f091f6811c2181b97b034a65f7e (patch) | |
tree | 078c09d36ee3faec2ee5803aa7880e96dbf16ca9 /lib | |
parent | 2488fff451863db7b18d7a4adf412536c1d864c6 (diff) |
Luong Dinh Dung's comments adjusted
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.vc6 | 20 | ||||
-rw-r--r-- | lib/urldata.h | 2 |
2 files changed, 18 insertions, 4 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index 7c2cbda37..aaaac35b6 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -54,7 +54,10 @@ RELEASE_OBJS= \ urlr.obj \ filer.obj \ writeoutr.obj \ - versionr.obj + versionr.obj \ + easyr.obj \ + highlevelr.obj \ + strequalr.obj DEBUG_OBJS= \ base64d.obj \ @@ -82,7 +85,10 @@ DEBUG_OBJS= \ urld.obj \ filed.obj \ writeoutd.obj \ - versiond.obj + versiond.obj \ + easyd.obj \ + highleveld.obj \ + strequald.obj RELEASE_SSL_OBJS= \ base64rs.obj \ @@ -110,7 +116,10 @@ RELEASE_SSL_OBJS= \ urlrs.obj \ filers.obj \ writeouts.obj \ - versionrs.obj + versionrs.obj \ + easyrs.obj \ + highlevelrs.obj \ + strequalrs.obj LINK_OBJS= \ base64.obj \ @@ -138,7 +147,10 @@ LINK_OBJS= \ url.obj \ file.obj \ writeout.obj \ - version.obj + version.obj \ + easy.obj \ + highlevel.obj \ + strequal.obj all : release diff --git a/lib/urldata.h b/lib/urldata.h index efdf495fe..c0cf969d1 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -88,7 +88,9 @@ #endif #endif +#ifdef HAVE_NETINET_IN_H #include <netinet/in.h> +#endif #include "timeval.h" |