diff options
author | Dave Love <fx@gnu.org> | 2003-09-23 12:39:44 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2003-09-23 12:39:44 +0000 |
commit | 86bd9393c5e637ca0dac1cf019267c59bd2ee7ac (patch) | |
tree | aaf905d16cf957e3d07000cbd95f02a1d35b4ca3 /configure.in | |
parent | 72041d01b538e261097f33517e5bbb78643f13d4 (diff) | |
download | emacs-86bd9393c5e637ca0dac1cf019267c59bd2ee7ac.tar.gz |
Check members of struct ifreq.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index b59c983e4d9..3add836efc4 100644 --- a/configure.in +++ b/configure.in @@ -1514,6 +1514,9 @@ AC_CHECK_MEMBER(struct tm.tm_gmtoff, [AC_DEFINE(HAVE_TM_GMTOFF, 1, [Define to 1 if `tm_gmtoff' is member of `struct tm'.])],, [#include <time.h>]) +AC_CHECK_MEMBERS([struct ifreq.ifr_flags, struct ifreq.ifr_hwaddr, + struct ifreq.ifr_netmask, struct ifreq.ifr_broadaddr, + struct ifreq.ifr_addr], , ,[#include <net/if.h>]) dnl checks for compiler characteristics |