diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-15 22:10:56 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-15 22:10:56 +0000 |
commit | d2d67c9856355f732c83f060e0c69b2e520db65e (patch) | |
tree | e03d17aaedd2722459c37c43d0a9297a63e81fc3 /libc/inet | |
parent | 557676bdf528741f188f6af0e7bb5f25e29e7d3e (diff) | |
download | uClibc-alpine-d2d67c9856355f732c83f060e0c69b2e520db65e.tar.bz2 uClibc-alpine-d2d67c9856355f732c83f060e0c69b2e520db65e.tar.xz |
Finished porting stuff to x86 and supporting the Linux 2.2 kernels.
It now compiles....
-Erik
Diffstat (limited to 'libc/inet')
-rw-r--r-- | libc/inet/Makefile | 2 | ||||
-rw-r--r-- | libc/inet/rpc/Makefile | 1 | ||||
-rw-r--r-- | libc/inet/rpc/get_myaddress.c | 2 | ||||
-rw-r--r-- | libc/inet/rpc/pmap_getmaps.c | 2 | ||||
-rw-r--r-- | libc/inet/rpc/pmap_getport.c | 2 | ||||
-rw-r--r-- | libc/inet/rpc/pmap_rmt.c | 2 |
6 files changed, 6 insertions, 5 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 |