| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 EXECUTABLES="ffmpeg ffmpeg_g ffprobe ffprobe_g" | 5 EXECUTABLES="ffmpeg ffmpeg_g ffprobe ffprobe_g" |
| 6 | 6 |
| 7 # needed for RLIMIT_CPU | 7 # needed for RLIMIT_CPU |
| 8 EnableGlibcCompat | 8 EnableGlibcCompat |
| 9 | 9 |
| 10 ConfigureStep() { | 10 ConfigureStep() { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 --target-os=linux \ | 31 --target-os=linux \ |
| 32 --enable-gpl \ | 32 --enable-gpl \ |
| 33 --enable-static \ | 33 --enable-static \ |
| 34 --enable-cross-compile \ | 34 --enable-cross-compile \ |
| 35 --disable-inline-asm \ | 35 --disable-inline-asm \ |
| 36 --disable-ssse3 \ | 36 --disable-ssse3 \ |
| 37 --disable-mmx \ | 37 --disable-mmx \ |
| 38 --disable-amd3dnow \ | 38 --disable-amd3dnow \ |
| 39 --disable-amd3dnowext \ | 39 --disable-amd3dnowext \ |
| 40 --disable-indevs \ | 40 --disable-indevs \ |
| 41 --disable-protocols \ | |
| 42 --disable-network \ | |
| 43 --enable-protocol=file \ | |
| 44 --enable-libmp3lame \ | 41 --enable-libmp3lame \ |
| 45 --enable-libvorbis \ | 42 --enable-libvorbis \ |
| 46 --enable-libtheora \ | 43 --enable-libtheora \ |
| 47 --disable-ffplay \ | 44 --disable-ffplay \ |
| 48 --disable-ffserver \ | 45 --disable-ffserver \ |
| 49 --disable-demuxer=rtsp \ | 46 --disable-demuxer=rtsp \ |
| 50 --disable-demuxer=image2 \ | 47 --disable-demuxer=image2 \ |
| 51 --prefix=${PREFIX} \ | 48 --prefix=${PREFIX} \ |
| 52 ${extra_args} | 49 ${extra_args} |
| 53 } | 50 } |
| 54 | 51 |
| 55 TestStep() { | 52 TestStep() { |
| 56 SetupCrossPaths | 53 SetupCrossPaths |
| 57 LogExecute make testprogs | 54 LogExecute make testprogs |
| 58 } | 55 } |
| OLD | NEW |