aboutsummaryrefslogtreecommitdiff
path: root/interface.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-09 23:52:18 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-09 23:52:18 +0000
commit706cd0a9b3bb15cf437ca22b400a333877af0e37 (patch)
treee04e4a2329b9cf5c96b31fa064e6c85dfb8b9055 /interface.c
parent5326414f31625194b265c0dfb8f45e932d52c482 (diff)
downloadbusybox-w32-706cd0a9b3bb15cf437ca22b400a333877af0e37.tar.gz
busybox-w32-706cd0a9b3bb15cf437ca22b400a333877af0e37.tar.bz2
busybox-w32-706cd0a9b3bb15cf437ca22b400a333877af0e37.zip
Update how we detect if libc5 is in use.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@2292 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'interface.c')
-rw-r--r--interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.c b/interface.c
index a80cd5524..a043d7223 100644
--- a/interface.c
+++ b/interface.c
@@ -3,7 +3,7 @@
3 * that either displays or sets the characteristics of 3 * that either displays or sets the characteristics of
4 * one or more of the system's networking interfaces. 4 * one or more of the system's networking interfaces.
5 * 5 *
6 * Version: $Id: interface.c,v 1.5 2001/03/15 15:37:48 mjn3 Exp $ 6 * Version: $Id: interface.c,v 1.6 2001/04/09 23:52:18 andersen Exp $
7 * 7 *
8 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> 8 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
9 * and others. Copyright 1993 MicroWalt Corporation 9 * and others. Copyright 1993 MicroWalt Corporation
@@ -115,7 +115,7 @@ struct in6_ifreq {
115#endif /* HAVE_AFINET6 */ 115#endif /* HAVE_AFINET6 */
116 116
117#if HAVE_AFIPX 117#if HAVE_AFIPX
118#if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) 118#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
119#include <netipx/ipx.h> 119#include <netipx/ipx.h>
120#else 120#else
121#include "ipx.h" 121#include "ipx.h"