Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 1bed7e7

Browse files
authored
[build] support autoconf-archive 2019.01.06 (#457)
This PR adds support for autoconf-archive 2019.01.06, which doesn't define CODE_COVERAGE_RULES anymore.
1 parent 8409f57 commit 1bed7e7

File tree

8 files changed

+40
-16
lines changed

8 files changed

+40
-16
lines changed

Makefile.am

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ DIST_TARGETS = dist-gzip dist-bzip2
2121
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
2222
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-all-restricted-plugins
2323

24-
@CODE_COVERAGE_RULES@
24+
include $(top_srcdir)/pre.am
2525

2626
SUBDIRS = \
2727
src \
@@ -61,6 +61,11 @@ EXTRA_DIST = \
6161
$(NULL)
6262

6363

64+
if AUTOCONF_HAVE_AM_INCLUDE_STATIC
65+
EXTRA_DIST += \
66+
aminclude_static.am \
67+
$(NULL)
68+
endif
6469

6570
HASH_VERSION = $(shell \
6671
git describe --dirty --match __poison__ --always 2> /dev/null \

bootstrap.sh

-9
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,6 @@ then
9090
echo "Debian/Ubuntu ........ apt-get install pkg-config"
9191
exit 1
9292
}
93-
94-
grep -q AX_CHECK_ configure && {
95-
echo " *** error: The 'autoconf-archive' package is not installed."
96-
echo "Use the appropriate command for your platform to install the package:"
97-
echo ""
98-
echo "Homebrew(OS X) ....... brew install autoconf-archive"
99-
echo "Debian/Ubuntu ........ apt-get install autoconf-archive"
100-
exit 1
101-
}
10293
fi
10394

10495
if test "$BOOTSTRAP_ANDROID" = 1

configure.ac

+4
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,10 @@ m4_foreach_w(THIS_PLUGIN,RESTRICTED_USE_NCP_PLUGINS,[
340340
341341
AC_SUBST(default_ncp_plugin)
342342
343+
AC_CHECK_FILE([${srcdir}/aminclude_static.am],
344+
[AM_CONDITIONAL(AUTOCONF_HAVE_AM_INCLUDE_STATIC, [true])],
345+
[AM_CONDITIONAL(AUTOCONF_HAVE_AM_INCLUDE_STATIC, [false])])
346+
343347
AC_OUTPUT
344348
345349
echo ""

pre.am

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# Copyright (c) 2020 Nest Labs, Inc.
3+
# All rights reserved.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
if AUTOCONF_HAVE_AM_INCLUDE_STATIC
19+
-include $(top_srcdir)/aminclude_static.am
20+
clean-local: code-coverage-clean
21+
dist-clean-local: code-coverage-dist-clean
22+
else
23+
@CODE_COVERAGE_RULES@
24+
endif

src/ipc-dbus/Makefile.am

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ AM_CPPFLAGS = \
2323
-I$(top_srcdir)/third_party/assert-macros \
2424
$(NULL)
2525

26-
@CODE_COVERAGE_RULES@
26+
include $(top_srcdir)/pre.am
2727

2828
EXTRA_DIST = wpantund.conf
2929

@@ -75,4 +75,4 @@ libwpantund_dbus_fuzz_la_LIBADD = $(DBUS_LIBS)
7575
libwpantund_dbus_fuzz_la_CPPFLAGS = $(AM_CPPFLAGS) $(DBUS_CFLAGS) $(FUZZ_CPPFLAGS) $(CODE_COVERAGE_CPPFLAGS)
7676
libwpantund_dbus_fuzz_la_CXXFLAGS = $(AM_CXXFLAGS) $(BOOST_CXXFLAGS) $(FUZZ_CXXFLAGS) $(CODE_COVERAGE_CXXFLAGS)
7777

78-
pkginclude_HEADERS = wpan-dbus-v0.h wpan-dbus-v1.h
78+
pkginclude_HEADERS = wpan-dbus-v0.h wpan-dbus-v1.h

src/ncp-spinel/Makefile.am

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ AM_CPPFLAGS = \
2525
-I$(top_srcdir)/third_party/openthread/src/ncp \
2626
$(NULL)
2727

28-
@CODE_COVERAGE_RULES@
28+
include $(top_srcdir)/pre.am
2929

3030
DISTCLEANFILES = \
3131
.deps \
@@ -144,4 +144,4 @@ endif
144144
if APPEND_NETWORK_TIME_RECEIVED_MONOTONIC_TIMESTAMP
145145
ncp_spinel_la_CPPFLAGS += -DAPPEND_NETWORK_TIME_RECEIVED_MONOTONIC_TIMESTAMP=1
146146
libncp_spinel_fuzz_la_CPPFLAGS += -DAPPEND_NETWORK_TIME_RECEIVED_MONOTONIC_TIMESTAMP=1
147-
endif
147+
endif

src/wpanctl/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ AM_CPPFLAGS = \
2424
-I$(top_srcdir)/third_party/assert-macros \
2525
$(NULL)
2626

27-
@CODE_COVERAGE_RULES@
27+
include $(top_srcdir)/pre.am
2828

2929
DISTCLEANFILES = .deps Makefile
3030

src/wpantund/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ AM_CPPFLAGS = \
2626
$(MISSING_CPPFLAGS) \
2727
$(NULL)
2828

29-
@CODE_COVERAGE_RULES@
29+
include $(top_srcdir)/pre.am
3030

3131
DISTCLEANFILES = \
3232
.deps \

0 commit comments

Comments
 (0)