summaryrefslogtreecommitdiffstats
path: root/win/show.py
diff options
context:
space:
mode:
authorSamuli Seppänen <samuli@openvpn.net>2011-02-19 10:15:12 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2011-02-27 00:59:04 +0100
commitc75a8976f070ef86cfced71b3df5cbce0e32e01a (patch)
tree020915e10160547e08ad7a7d868a4363623698fe /win/show.py
parent3b315a57d579d9ba8e259216f722094f1c1dbcde (diff)
downloadopenvpn-c75a8976f070ef86cfced71b3df5cbce0e32e01a.tar.gz
openvpn-c75a8976f070ef86cfced71b3df5cbce0e32e01a.tar.xz
openvpn-c75a8976f070ef86cfced71b3df5cbce0e32e01a.zip
Changes to buildsystem patchset
Implemented changes to the buildsystem patchset suggested by jamesyonan in IRC meeting on 17th Feb 2010: 1) Remove variables added to version.m4 and use win/settings.in instead 2) Add ENABLE_<FEATURE> configuration to win/settings.in instead of parsing config-win32.h for them This patch applies on top of the previous 13 patches. 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>
Diffstat (limited to 'win/show.py')
-rw-r--r--win/show.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/win/show.py b/win/show.py
index 111c965..cc41715 100644
--- a/win/show.py
+++ b/win/show.py
@@ -1,9 +1,8 @@
-from wb import get_config, get_build_params
+from wb import get_config
from js import JSON
def main():
print JSON().encode(get_config())
- print JSON().encode(get_build_params())
# if we are run directly, and not loaded as a module
if __name__ == "__main__":