| OLD | NEW |
| 1 Name: libvpx | 1 Name: libvpx |
| 2 URL: http://www.webmproject.org | 2 URL: http://www.webmproject.org |
| 3 Version: 0.9.5-28-g4d1b0d2 |
| 3 License File: source/libvpx/LICENSE | 4 License File: source/libvpx/LICENSE |
| 4 | 5 |
| 6 Description: |
| 5 Contains the sources used to compile libvpx binaries used by Google Chrome and | 7 Contains the sources used to compile libvpx binaries used by Google Chrome and |
| 6 Chromium. | 8 Chromium. |
| 7 | 9 |
| 8 The libvpx source is from webmproject.org: | 10 The libvpx source is from webmproject.org: |
| 9 git://review.webmproject.org/libvpx | 11 git://review.webmproject.org/libvpx |
| 10 | 12 |
| 11 Date: Friday November 5 2010 | 13 Date: Friday November 5 2010 |
| 12 Commit: 4d1b0d2a2dff335baedd52bd7de09d55ec10b253 | 14 Commit: 4d1b0d2a2dff335baedd52bd7de09d55ec10b253 |
| 13 Version: v0.9.5-28-g4d1b0d2 | 15 Version: v0.9.5-28-g4d1b0d2 |
| 14 | 16 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 62 |
| 61 grep '^gcc ' make.out |sed -ne '/^gcc /s/.* \([^ ]*\.c\)$/\1/p' | 63 grep '^gcc ' make.out |sed -ne '/^gcc /s/.* \([^ ]*\.c\)$/\1/p' |
| 62 | 64 |
| 63 gives the .c & .h files, and: | 65 gives the .c & .h files, and: |
| 64 | 66 |
| 65 sed -ne 's/.* \([^ ]*\.asm\) .*/\1/p' < make.out | 67 sed -ne 's/.* \([^ ]*\.asm\) .*/\1/p' < make.out |
| 66 | 68 |
| 67 gives the .asm files. | 69 gives the .asm files. |
| 68 The gcc & yasm flags were also extracted from make.out, similarly by visual | 70 The gcc & yasm flags were also extracted from make.out, similarly by visual |
| 69 inspection. | 71 inspection. |
| OLD | NEW |