When a system traffic is skipped due to 'HAVE_FTP = no' or 'HAVE_TFTP = no', it takes some effort to figure out it is due to missing the required python library. Add some comments around the find_l7_lib(), so that user can figure that out by $ git grep HAVE_FTP.
Signed-off-by: Yi-Hung Wei <[email protected]> --- tests/atlocal.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/atlocal.in b/tests/atlocal.in index 7c5e9e3357e5..95f98f4dc845 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -114,6 +114,8 @@ else HAVE_IPV6=no fi +# Look for a python L7 library 'LIB' in the system. If it is found, defines +# HAVE_LIB="yes", otherwise HAVE_LIB="no" find_l7_lib() { set +x @@ -130,7 +132,9 @@ find_l7_lib() fi } +# HAVE_FTP find_l7_lib ftp +# HAVE_TFTP find_l7_lib tftp # Look for a commnand in the system. If it is found, defines -- 2.7.4 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
