diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-09 16:50:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-09 16:50:03 +0000 |
commit | 8942a07afcba648c1766c8e94df65b92a555fdb3 (patch) | |
tree | ec7a302869597c675104248a8427cd3520c02fd9 /sysdeps/unix | |
parent | 557072655748be14a747242135f1b34eff9f735f (diff) | |
download | glibc-8942a07afcba648c1766c8e94df65b92a555fdb3.zip glibc-8942a07afcba648c1766c8e94df65b92a555fdb3.tar.gz glibc-8942a07afcba648c1766c8e94df65b92a555fdb3.tar.bz2 |
* sysdeps/unix/sysv/linux/net/if.h: New file.
* sysdeps/unix/sysv/linux/Dist: Add it.
* sysdeps/unix/sysv/linux/Makefile [$(subdir)=socket] (headers): Add
net/if.h.
* Makeconfig (link-libc): Add libc.a after libc.so in link.
* Rules (static-only-routines rule): Use empty.o instead of dummy.o.
(empty.o): New target.
(generated): Add empty.c, empty.o.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/Dist | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/net/if.h | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Dist b/sysdeps/unix/sysv/linux/Dist index b741cdc..526e129 100644 --- a/sysdeps/unix/sysv/linux/Dist +++ b/sysdeps/unix/sysv/linux/Dist @@ -1,3 +1,4 @@ +net/if.h sys/acct.h sys/quota.h sys/socketcall.h diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 53837ab..c3bdd1b 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -26,7 +26,7 @@ headers += sys/timex.h endif ifeq ($(subdir), socket) -headers += sys/socketcall.h +headers += sys/socketcall.h net/if.h endif ifeq ($(subdir), sunrpc) diff --git a/sysdeps/unix/sysv/linux/net/if.h b/sysdeps/unix/sysv/linux/net/if.h new file mode 100644 index 0000000..1aa8e7b --- /dev/null +++ b/sysdeps/unix/sysv/linux/net/if.h @@ -0,0 +1 @@ +#include <linux/if.h> |