Skip to content

Commit

Permalink
re-enable external json
Browse files Browse the repository at this point in the history
  • Loading branch information
plamborn committed Feb 7, 2020
1 parent c95badc commit 529ca4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions m4/hio_check_json.m4
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# reserved.

AC_DEFUN([HIO_CHECK_JSON],[

AC_ARG_WITH(json, [AS_HELP_STRING([--with-external-json=PATH], [use external json-c. pass yes to use pkgconfig @<:@default=no@:>@])],
[], [with_external_json=no])
AC_ARG_WITH(external-json, [AS_HELP_STRING([--with-external-json=PATH],
[use external json-c. pass yes to use pkgconfig @<:@default=no@:>@])],
[with_external_json=yes], [with_external_json=no])

if test ! $with_external_json = no ; then
if test $with_external_json = yes ; then
Expand Down

0 comments on commit 529ca4d

Please sign in to comment.