BIND 10 trac3172, updated. 66518462614dd93c7a0ca3111940952d171fbef9 [3172] Fix build failure on BSD systems
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Oct 29 16:04:21 UTC 2013
The branch, trac3172 has been updated
via 66518462614dd93c7a0ca3111940952d171fbef9 (commit)
from 511e9c6eca07d842e90f080663d9a3ecadb430c2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 66518462614dd93c7a0ca3111940952d171fbef9
Author: Kean Johnston <kean at isc.org>
Date: Tue Oct 29 18:01:38 2013 +0200
[3172] Fix build failure on BSD systems
The comment at the end of adding to AM_CXXFLAGS was making the total
line too long, and the automake tool was splitting the line. This meant
that the macro assignment had an escaped comment, which the BSD make
interprets differently to GNU make (the latter swallows the next line as
part of the comment, whereas the former doesn't).
-----------------------------------------------------------------------
Summary of changes:
src/lib/xfr/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/lib/xfr/Makefile.am b/src/lib/xfr/Makefile.am
index 1ccbb00..5e90e9b 100644
--- a/src/lib/xfr/Makefile.am
+++ b/src/lib/xfr/Makefile.am
@@ -5,7 +5,8 @@ AM_CPPFLAGS += -I$(top_srcdir)/src/lib/dns -I$(top_builddir)/src/lib/dns
AM_CPPFLAGS += $(BOOST_INCLUDES)
AM_CXXFLAGS = $(B10_CXXFLAGS)
-AM_CXXFLAGS += -Wno-unused-parameter # see src/lib/cc/Makefile.am
+AM_CXXFLAGS += -Wno-unused-parameter
+# see src/lib/cc/Makefile.am
CLEANFILES = *.gcno *.gcda
More information about the bind10-changes
mailing list