| 1 | | |
| | 1 | Haiku patches have been sent upstream and have been included in this release so it builds out of the box. |
| | 2 | Only problem still is with two asm files in: |
| | 3 | scummvm/trunk/graphics/scaler/ |
| | 4 | Offending files are: |
| | 5 | hq2x_i386.asm |
| | 6 | hq3x_i386.asm |
| | 7 | At the bottom of those 2 files you find the lines: |
| | 8 | |
| | 9 | {{{ |
| | 10 | %ifidn __OUTPUT_FORMAT__,elf |
| | 11 | section .note.GNU-stack noalloc noexec nowrite progbits |
| | 12 | %endif |
| | 13 | }}} |
| | 14 | |
| | 15 | These lines add an extra header GNU_STACK to the binary that Haiku can't handle (yet?) so it's safe to remove them. |
| | 16 | |
| | 17 | Then just run ./configure --prefix, make and make install. |