The win/show.py tools is used to view build parameters interactively. This
changes it so that it displays parameters parsed from config-win32.h in addition
to those from win/settings.in.
Signed-off-by: Samuli Seppänen <samuli@openvpn.net>
Acked-by: James Yonan <james@openvpn.net>
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
-from wb import get_config\r
+from wb import get_config, get_build_params
from js import JSON\r
\r
def main():\r
- kv = get_config()\r
- print JSON().encode(kv)\r
+ print JSON().encode(get_config())
+ print JSON().encode(get_build_params())
\r
# if we are run directly, and not loaded as a module\r
if __name__ == "__main__":\r