summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-12-04 13:03:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-12-04 13:03:08 +0000
commit436d1479256117f21740dbd1ed4eb0c136c15de9 (patch)
tree8950ebf7265db50952dfd1a38c0b0f2a0c4289c7
parent4bd78a7df40e1ff3500c94303458b374b14aa7d2 (diff)
downloadgnurl-436d1479256117f21740dbd1ed4eb0c136c15de9.tar.gz
gnurl-436d1479256117f21740dbd1ed4eb0c136c15de9.tar.bz2
gnurl-436d1479256117f21740dbd1ed4eb0c136c15de9.zip
Eric's #include fixes for better macos compiles
-rw-r--r--lib/connect.c4
-rw-r--r--lib/getpass.c4
-rw-r--r--lib/hostip.c4
-rw-r--r--lib/sendf.c4
4 files changed, 12 insertions, 4 deletions
diff --git a/lib/connect.c b/lib/connect.c
index c045ba436..69308df2b 100644
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -44,6 +44,10 @@
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h> /* required for free() prototype, without it, this crashes
+ on macos 68K */
+#endif
#endif
#include <stdio.h>
diff --git a/lib/getpass.c b/lib/getpass.c
index 76af6fac9..62f93ffa0 100644
--- a/lib/getpass.c
+++ b/lib/getpass.c
@@ -35,9 +35,7 @@
* Daniel Stenberg <daniel@haxx.se>
*/
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
+#include "setup.h" /* setup.h is required for read() prototype */
#ifndef HAVE_GETPASS_R
diff --git a/lib/hostip.c b/lib/hostip.c
index b77f70421..f3a3ccaa5 100644
--- a/lib/hostip.c
+++ b/lib/hostip.c
@@ -28,7 +28,6 @@
#define _REENTRANT
-
#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
#include <winsock.h>
#else
@@ -47,6 +46,9 @@
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h> /* required for free() prototypes */
+#endif
#ifdef VMS
#include <inet.h>
#include <stdlib.h>
diff --git a/lib/sendf.c b/lib/sendf.c
index fd58220d9..2a0aa78c3 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -27,6 +27,10 @@
#include <stdarg.h>
#include <stdlib.h>
+#ifdef HAVE_SYS_SOCKET_H
+#include <sys/socket.h> /* required for send() & recv() prototypes */
+#endif
+
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif