Added --no-mysql option to configure script to make MySQL optional (bug 5661, r=dvander).

This commit is contained in:
Scott Ehlert
2013-03-17 02:40:04 -05:00
parent 5286f43133
commit 54012523bc
3 changed files with 16 additions and 4 deletions
+2
View File
@@ -7,6 +7,8 @@ run.options.add_option('--enable-debug', action='store_const', const='1', dest='
help='Enable debugging symbols')
run.options.add_option('--enable-optimize', action='store_const', const='1', dest='opt',
help='Enable optimization')
run.options.add_option('--no-mysql', action='store_false', default=True, dest='hasMySql',
help='Disable building MySQL extension')
run.options.add_option('-s', '--sdks', default='all', dest='sdks',
help='Build against specified SDKs; valid args are "all", "present", or '
'comma-delimited list of engine names (default: %default)')