diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 | 
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 | 
| commit | 3faf8d6bffc5d0fb2525ba37bb504c53366caf9d (patch) | |
| tree | 7e47911263e75034b767fe34b2f8d3d17e91f66d /gen-make.py | |
| parent | a55fb3c0d5eca7d887798125d5b95942b1f01d4b (diff) | |
Diffstat (limited to 'gen-make.py')
| -rwxr-xr-x | gen-make.py | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/gen-make.py b/gen-make.py index 2e5557bea850..9e410c43bd11 100755 --- a/gen-make.py +++ b/gen-make.py @@ -206,9 +206,8 @@ def _usage_exit(err=None):    print("           Use static openssl")    print("")    print("  --vsnet-version=VER") -  print("           generate for VS.NET version VER (2002, 2003, 2005, 2008,") -  print("           2010, 2012, 2013 or 2015)") -  print("           [only valid in combination with '-t vcproj']") +  print("           generate for VS.NET version VER (2005-2017 or 9.0-15.0)") +  print("           [implies '-t vcproj']")    print("")    print(" -D NAME[=value]")    print("           define NAME macro during compilation") @@ -304,6 +303,8 @@ if __name__ == '__main__':        skip = 1      elif opt == '-t':        gentype = val +    elif opt == '--vsnet-version': +      gentype = 'vcproj'      else:        if opt == '--with-httpd':          rest.add('--with-apr', os.path.join(val, 'srclib', 'apr'),  | 
