Skip to content

Commit

Permalink
Merge SVN 3732, 3733
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeclerck committed May 26, 2024
1 parent 64abaff commit 8fea09e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@
as its documentation specify to explicit include via -I dstdir/json-c
* NEWS, DEPENDENCIES: updated

2020-07-24 James K. Lowden <[email protected]>

* build_aux/bootstrap: suppress portability warning stemming from
AMINCLUDE_STATIC

2020-07-19 Edward Hart <[email protected]>

* configure.ac: added support for JSON-C as JSON handler
Expand Down
10 changes: 10 additions & 0 deletions build_aux/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,16 @@ autoreconf $AC_OPTS $MAINPATH > $msgs 2>&1; ret=$?
# test $retval -eq 0 # || exit $retval
#done

# Filter aminclude_static as those are only used _within_ another
# check so reporting as portability problem is only noise.
# This has the effect of redirecting some error messages to stdout.

awk '/^aminclude_static[.]am:/ { msg = msg sep $0; sep = "\n"; next }
/Makefile[.]am.+aminclude_static.am.+from here/ {
msg = ""; sep = ""; next }
msg { print msg > "/dev/stderr"; msg = "" }
{ print }' $msgs

if test $ret -ne 0; then
echo; echo "ERROR, autoreconf returned $ret - aborting bootstrap" && exit $ret
fi
Expand Down

0 comments on commit 8fea09e

Please sign in to comment.