summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-15 22:10:56 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-15 22:10:56 +0000
commitd2d67c9856355f732c83f060e0c69b2e520db65e (patch)
treee03d17aaedd2722459c37c43d0a9297a63e81fc3 /libc
parent557676bdf528741f188f6af0e7bb5f25e29e7d3e (diff)
Finished porting stuff to x86 and supporting the Linux 2.2 kernels.
It now compiles.... -Erik
Diffstat (limited to 'libc')
-rw-r--r--libc/inet/Makefile2
-rw-r--r--libc/inet/rpc/Makefile1
-rw-r--r--libc/inet/rpc/get_myaddress.c2
-rw-r--r--libc/inet/rpc/pmap_getmaps.c2
-rw-r--r--libc/inet/rpc/pmap_getport.c2
-rw-r--r--libc/inet/rpc/pmap_rmt.c2
-rw-r--r--libc/misc/time/Makefile2
-rw-r--r--libc/stdlib/malloc/Makefile2
8 files changed, 8 insertions, 7 deletions
diff --git a/libc/inet/Makefile b/libc/inet/Makefile
index 1e954307f..14afc1763 100644
--- a/libc/inet/Makefile
+++ b/libc/inet/Makefile
@@ -5,7 +5,7 @@
# under the GNU Library General Public License.
TOPDIR=../
-include Rules.make
+include $(TOPDIR)Rules.make
LIBC=../libc.a
diff --git a/libc/inet/rpc/Makefile b/libc/inet/rpc/Makefile
index b2d7c6d4a..e2c867703 100644
--- a/libc/inet/rpc/Makefile
+++ b/libc/inet/rpc/Makefile
@@ -1,5 +1,6 @@
TOPDIR=../
include $(TOPDIR)Rules.make
+CFLAGS+=-I$(TOPDIR)include/linux
OBJS = auth_none.o auth_unix.o authunix_prot.o \
bindresvport.o clnt_generic.o clnt_perror.o \
diff --git a/libc/inet/rpc/get_myaddress.c b/libc/inet/rpc/get_myaddress.c
index 1940d3e27..cbfc05b8d 100644
--- a/libc/inet/rpc/get_myaddress.c
+++ b/libc/inet/rpc/get_myaddress.c
@@ -42,7 +42,7 @@ static char sccsid[] = "@(#)get_myaddress.c 1.4 87/08/11 Copyr 1984 Sun Micro";
#include <rpc/pmap_prot.h>
#include <sys/socket.h>
#include <stdio.h>
-#include <net/if.h>
+//#include <net/if.h>
#include <sys/ioctl.h>
#include <arpa/inet.h>
#include <netinet/in.h>
diff --git a/libc/inet/rpc/pmap_getmaps.c b/libc/inet/rpc/pmap_getmaps.c
index e4a9c4936..98803d3c5 100644
--- a/libc/inet/rpc/pmap_getmaps.c
+++ b/libc/inet/rpc/pmap_getmaps.c
@@ -46,7 +46,7 @@ static char sccsid[] = "@(#)pmap_getmaps.c 1.10 87/08/11 Copyr 1984 Sun Micro";
#include <netdb.h>
#include <stdio.h>
#include <errno.h>
-#include <net/if.h>
+//#include <net/if.h>
#include <sys/ioctl.h>
#define NAMELEN 255
#define MAX_BROADCAST_SIZE 1400
diff --git a/libc/inet/rpc/pmap_getport.c b/libc/inet/rpc/pmap_getport.c
index 77b9cf743..5eb2eee3b 100644
--- a/libc/inet/rpc/pmap_getport.c
+++ b/libc/inet/rpc/pmap_getport.c
@@ -42,7 +42,7 @@ static char sccsid[] = "@(#)pmap_getport.c 1.9 87/08/11 Copyr 1984 Sun Micro";
#include <rpc/pmap_prot.h>
#include <rpc/pmap_clnt.h>
#include <sys/socket.h>
-#include <net/if.h>
+//#include <net/if.h>
static struct timeval timeout = { 5, 0 };
static struct timeval tottimeout = { 60, 0 };
diff --git a/libc/inet/rpc/pmap_rmt.c b/libc/inet/rpc/pmap_rmt.c
index 336d0c112..1921b74c1 100644
--- a/libc/inet/rpc/pmap_rmt.c
+++ b/libc/inet/rpc/pmap_rmt.c
@@ -46,7 +46,7 @@ static char sccsid[] = "@(#)pmap_rmt.c 1.21 87/08/27 Copyr 1984 Sun Micro";
#include <sys/socket.h>
#include <stdio.h>
#include <errno.h>
-#include <net/if.h>
+//#include <net/if.h>
#include <sys/ioctl.h>
#include <arpa/inet.h>
#define MAX_BROADCAST_SIZE 1400
diff --git a/libc/misc/time/Makefile b/libc/misc/time/Makefile
index ce2351ddf..7d648f867 100644
--- a/libc/misc/time/Makefile
+++ b/libc/misc/time/Makefile
@@ -5,7 +5,7 @@
TOPDIR=../
include $(TOPDIR)Rules.make
-CFLAGS+=-I$(TOPDIR)/include/linux
+CFLAGS+=-I$(TOPDIR)include/linux
LIBC=../libc.a
diff --git a/libc/stdlib/malloc/Makefile b/libc/stdlib/malloc/Makefile
index 368adb797..eecfd3203 100644
--- a/libc/stdlib/malloc/Makefile
+++ b/libc/stdlib/malloc/Makefile
@@ -3,7 +3,7 @@
# under the GNU Library General Public License.
TOPDIR=../
-include Rules.make
+include $(TOPDIR)Rules.make
LIBC=../libc.a