summaryrefslogtreecommitdiff
path: root/gen-make.py
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2015-03-18 13:33:26 +0000
committer <>2015-07-08 14:41:01 +0000
commitbb0ef45f7c46b0ae221b26265ef98a768c33f820 (patch)
tree98bae10dde41c746c51ae97ec4f879e330415aa7 /gen-make.py
parent239dfafe71711b2f4c43d7b90a1228d7bdc5195e (diff)
downloadsubversion-tarball-bb0ef45f7c46b0ae221b26265ef98a768c33f820.tar.gz
Imported from /home/lorry/working-area/delta_subversion-tarball/subversion-1.8.13.tar.gz.subversion-1.8.13
Diffstat (limited to 'gen-make.py')
-rwxr-xr-xgen-make.py28
1 files changed, 17 insertions, 11 deletions
diff --git a/gen-make.py b/gen-make.py
index 3e98beb..2b49b5e 100755
--- a/gen-make.py
+++ b/gen-make.py
@@ -142,12 +142,6 @@ def _usage_exit(err=None):
print(" look for Berkeley DB headers and libs in")
print(" DIR")
print("")
- print(" --with-neon=DIR")
- print(" the Neon sources are in DIR")
- print("")
- print(" --without-neon")
- print(" Don't build Neon sources (if present)")
- print("")
print(" --with-serf=DIR")
print(" the Serf sources are in DIR")
print("")
@@ -162,11 +156,11 @@ def _usage_exit(err=None):
print(" implies --enable-nls")
print("")
print(" --with-openssl=DIR")
- print(" tell neon to look for OpenSSL headers")
+ print(" tell serf to look for OpenSSL headers")
print(" and libs in DIR")
print("")
print(" --with-zlib=DIR")
- print(" tell neon to look for ZLib headers and")
+ print(" tell Subversion to look for ZLib headers and")
print(" libs in DIR")
print("")
print(" --with-jdk=DIR")
@@ -210,8 +204,11 @@ def _usage_exit(err=None):
print(" --with-static-apr")
print(" Use static apr and apr-util")
print("")
+ print(" --with-static-openssl")
+ print(" Use static openssl")
+ print("")
print(" --vsnet-version=VER")
- print(" generate for VS.NET version VER (2002, 2003, 2005, 2008 or 2010)")
+ print(" generate for VS.NET version VER (2002, 2003, 2005, 2008, 2010 or 2012)")
print(" [only valid in combination with '-t vcproj']")
print("")
print(" --with-apr_memcache=DIR")
@@ -242,8 +239,6 @@ if __name__ == '__main__':
'with-apr-util=',
'with-apr-iconv=',
'with-berkeley-db=',
- 'with-neon=',
- 'without-neon',
'with-serf=',
'with-httpd=',
'with-libintl=',
@@ -256,6 +251,7 @@ if __name__ == '__main__':
'with-sasl=',
'with-apr_memcache=',
'with-static-apr',
+ 'with-static-openssl',
'enable-pool-debug',
'enable-purify',
'enable-quantify',
@@ -265,6 +261,13 @@ if __name__ == '__main__':
'disable-shared',
'installed-libs=',
'vsnet-version=',
+
+ # Keep distributions that help by adding a path
+ # working. On unix this would be filtered by
+ # configure, but on Windows gen-make.py is used
+ # directly.
+ 'with-neon=',
+ 'without-neon',
])
if len(args) > 1:
_usage_exit("Too many arguments")
@@ -289,6 +292,9 @@ if __name__ == '__main__':
if opt != '--debug':
rest.add(opt, val)
del prev_conf
+ elif opt == '--with-neon' or opt == '--without-neon':
+ # Provide a warning that we ignored these arguments
+ print("Ignoring no longer supported argument '%s'" % opt)
else:
rest.add(opt, val)