ossp-pkg/as/as-gui/aclocal.m4 1.10 -> 1.11
--- aclocal.m4 2003/01/22 21:56:07 1.10
+++ aclocal.m4 2003/01/22 22:14:52 1.11
@@ -47,6 +47,40 @@
dnl ##
+dnl ## Look for SIOCGIFCONF
+dnl ##
+
+AC_DEFUN(AC_CHECK_SIOCGIFCONF,[
+AC_MSG_CHECKING(whether <sys/ioctl.h> has SIOCGIFCONF)
+AC_TRY_COMPILE([#include <sys/sockio.h>
+#include <sys/ioctl.h>
+], [
+ int i = SIOCGIFCONF;
+ return 0;],
+ AC_DEFINE(HAVE_SIOCGIFCONF, 1, [Define to 1 if <sys/ioctl.h> defines or includes SIOCGIFCONF.]),
+ AC_MSG_RESULT([no]),
+ AC_MSG_RESULT([yes]))
+])dnl
+
+
+dnl ##
+dnl ## Look for SIOGHWADDR
+dnl ##
+
+AC_DEFUN(AC_CHECK_SIOGHWADDR,[
+AC_MSG_CHECKING(whether <sys/ioctl.h> has SIOGHWADDR)
+AC_TRY_COMPILE([#include <sys/sockio.h>
+#include <sys/ioctl.h>
+], [
+ int i = SIOGHWADDR;
+ return 0;],
+ AC_DEFINE(HAVE_SIOGHWADDR, 1, [Define to 1 if <sys/ioctl.h> defines or includes SIOGHWADDR.]),
+ AC_MSG_RESULT([no]),
+ AC_MSG_RESULT([yes]))
+])dnl
+
+
+dnl ##
dnl ## Look for SIOCGENADDR
dnl ##
|
|