| | 17 | |
| | 18 | P.S.S |
| | 19 | If you get a message like this: |
| | 20 | {{{ |
| | 21 | Found yasm 0.x.x.xxxx |
| | 22 | Minimum version is yasm-1.0.0 |
| | 23 | If you really want to compile without asm, configure with --disable-asm. |
| | 24 | }}} |
| | 25 | that means that you have an old version of yasm on your system, so you should update it. The quickest way to do so is like this: |
| | 26 | |
| | 27 | {{{ |
| | 28 | # cd /my/path/where/i/keep/compiled/stuff |
| | 29 | # git clone git://github.com/yasm/yasm.git |
| | 30 | # cd yasm |
| | 31 | # ./configure --enable-static --enable-shared |
| | 32 | # make |
| | 33 | # make install |
| | 34 | # ldconfig |
| | 35 | }}} |
| | 36 | and after that, just repeat the configure/make/make install steps for libx264 and it should be fine this time. |