diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/make/configure.py b/make/configure.py index 4d6dfe59d..1b71619c8 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1178,8 +1178,6 @@ def createCLI(): h = IfHost( 'enable use of Intel Quick Sync Video hardware acceleration', '*-*-*', none=optparse.SUPPRESS_HELP ).value grp.add_option( '--enable-qsv', default=False, action='store_true', help=h ) - h = IfHost( 'enable OpenCL features', '*-*-*', none=optparse.SUPPRESS_HELP ).value - grp.add_option( '--enable-opencl', default=False, action='store_true', help=h ) h = IfHost( 'enable HWD features', '*-*-*', none=optparse.SUPPRESS_HELP ).value grp.add_option( '--enable-hwd', default=False, action='store_true', help=h ) @@ -1653,7 +1651,6 @@ int main () doc.add( 'FEATURE.libmkv', int( options.enable_libmkv )) doc.add( 'FEATURE.avformat', int( options.enable_avformat )) doc.add( 'FEATURE.qsv', int( options.enable_qsv )) - doc.add( 'FEATURE.opencl', int( options.enable_opencl )) doc.add( 'FEATURE.hwd', int( options.enable_hwd )) doc.add( 'FEATURE.xcode', int( not (Tools.xcodebuild.fail or options.disable_xcode or options.cross) )) |