OSDN Git Service

Patch from Lars Kellogg-Stedman:
authorEric Andersen <andersen@codepoet.org>
Sat, 5 Jul 2003 08:00:17 +0000 (08:00 -0000)
committerEric Andersen <andersen@codepoet.org>
Sat, 5 Jul 2003 08:00:17 +0000 (08:00 -0000)
    Glibc 2.1.3 (used by the Hardhat Linux SDK distributed by Cyclades)
    does not define IF_NAMESIZE in net/if.h.

networking/nameif.c

index e74a042..dca7c8c 100644 (file)
 
 #include "busybox.h"
 
+/* Older versions of net/if.h do not appear to define IF_NAMESIZE. */
+#ifndef IF_NAMESIZE
+#  ifdef IFNAMSIZ
+#    define IF_NAMESIZE IFNAMSIZ
+#  else
+#    define IF_NAMESIZE 16
+#  endif
+#endif
+
 /* take from linux/sockios.h */
 #define SIOCSIFNAME    0x8923  /* set interface name */