Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit 71f49e3

Browse files
author
Jay Logue
authored
Merge pull request #390 from openweave/issue/fix-interface-iter
Major rewrite of Inet Layer InterfaceIterator/InterfaceAddressIterator
2 parents 1f530c4 + da30eb6 commit 71f49e3

File tree

6 files changed

+967
-427
lines changed

6 files changed

+967
-427
lines changed

configure

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.68 for Weave g7f51c591-dirty.
3+
# Generated by GNU Autoconf 2.68 for Weave g65f9e46e-dirty.
44
#
55
# Report bugs to <[email protected]>.
66
#
@@ -570,8 +570,8 @@ MAKEFLAGS=
570570
# Identity of this package.
571571
PACKAGE_NAME='Weave'
572572
PACKAGE_TARNAME='weave'
573-
PACKAGE_VERSION='g7f51c591-dirty'
574-
PACKAGE_STRING='Weave g7f51c591-dirty'
573+
PACKAGE_VERSION='g65f9e46e-dirty'
574+
PACKAGE_STRING='Weave g65f9e46e-dirty'
575575
PACKAGE_BUGREPORT='[email protected]'
576576
PACKAGE_URL='https://developer.nest.com/'
577577

@@ -1712,7 +1712,7 @@ if test "$ac_init_help" = "long"; then
17121712
# Omit some internal or obsolete options to make the list less imposing.
17131713
# This message is too long to be a string in the A/UX 3.1 sh.
17141714
cat <<_ACEOF
1715-
\`configure' configures Weave g7f51c591-dirty to adapt to many kinds of systems.
1715+
\`configure' configures Weave g65f9e46e-dirty to adapt to many kinds of systems.
17161716

17171717
Usage: $0 [OPTION]... [VAR=VALUE]...
17181718

@@ -1783,7 +1783,7 @@ fi
17831783

17841784
if test -n "$ac_init_help"; then
17851785
case $ac_init_help in
1786-
short | recursive ) echo "Configuration of Weave g7f51c591-dirty:";;
1786+
short | recursive ) echo "Configuration of Weave g65f9e46e-dirty:";;
17871787
esac
17881788
cat <<\_ACEOF
17891789

@@ -2152,7 +2152,7 @@ fi
21522152
test -n "$ac_init_help" && exit $ac_status
21532153
if $ac_init_version; then
21542154
cat <<\_ACEOF
2155-
Weave configure g7f51c591-dirty
2155+
Weave configure g65f9e46e-dirty
21562156
generated by GNU Autoconf 2.68
21572157

21582158
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -3164,7 +3164,7 @@ cat >config.log <<_ACEOF
31643164
This file contains any messages produced by compilers while
31653165
running configure, to aid debugging if configure makes a mistake.
31663166

3167-
It was created by Weave $as_me g7f51c591-dirty, which was
3167+
It was created by Weave $as_me g65f9e46e-dirty, which was
31683168
generated by GNU Autoconf 2.68. Invocation command line was
31693169

31703170
$ $0 $@
@@ -4371,7 +4371,7 @@ fi
43714371

43724372
# Define the identity of the package.
43734373
PACKAGE='weave'
4374-
VERSION='g7f51c591-dirty'
4374+
VERSION='g65f9e46e-dirty'
43754375

43764376

43774377
# Some tools Automake needs.
@@ -28146,6 +28146,20 @@ $as_echo "no" >&6; }
2814628146
fi
2814728147
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2814828148

28149+
# Check for sys/sockio.h
28150+
for ac_header in sys/sockio.h
28151+
do :
28152+
ac_fn_c_check_header_mongrel "$LINENO" "sys/sockio.h" "ac_cv_header_sys_sockio_h" "$ac_includes_default"
28153+
if test "x$ac_cv_header_sys_sockio_h" = xyes; then :
28154+
cat >>confdefs.h <<_ACEOF
28155+
#define HAVE_SYS_SOCKIO_H 1
28156+
_ACEOF
28157+
28158+
fi
28159+
28160+
done
28161+
28162+
2814928163
#
2815028164
# Check for types and structures
2815128165
#
@@ -30226,7 +30240,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3022630240
# report actual input values of CONFIG_FILES etc. instead of their
3022730241
# values after options handling.
3022830242
ac_log="
30229-
This file was extended by Weave $as_me g7f51c591-dirty, which was
30243+
This file was extended by Weave $as_me g65f9e46e-dirty, which was
3023030244
generated by GNU Autoconf 2.68. Invocation command line was
3023130245

3023230246
CONFIG_FILES = $CONFIG_FILES
@@ -30293,7 +30307,7 @@ _ACEOF
3029330307
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3029430308
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
3029530309
ac_cs_version="\\
30296-
Weave config.status g7f51c591-dirty
30310+
Weave config.status g65f9e46e-dirty
3029730311
configured by $0, generated by GNU Autoconf 2.68,
3029830312
with options \\"\$ac_cs_config\\"
3029930313

configure.ac

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2518,6 +2518,9 @@ AC_DEFINE(HAVE_SO_BINDTODEVICE, 1, [Define to 1 if your <sys/socket.h> header fi
25182518
AC_MSG_RESULT([no])
25192519
])
25202520

2521+
# Check for sys/sockio.h
2522+
AC_CHECK_HEADERS([sys/sockio.h])
2523+
25212524
#
25222525
# Check for types and structures
25232526
#

src/include/BuildConfig.h.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@
275275
/* Define to 1 if you have the <sys/socket.h> header file. */
276276
#undef HAVE_SYS_SOCKET_H
277277

278+
/* Define to 1 if you have the <sys/sockio.h> header file. */
279+
#undef HAVE_SYS_SOCKIO_H
280+
278281
/* Define to 1 if you have the <sys/stat.h> header file. */
279282
#undef HAVE_SYS_STAT_H
280283

0 commit comments

Comments
 (0)