| 1 | | |
| | 1 | cp /boot/common/share/libtool/config/config.* ./mk/libtool/ (libtoolize doesn't work here) |
| | 2 | ./configure --prefix=common (first time do this to create libtool) |
| | 3 | cp /boot/common/share/libtool/config/ltmain.sh ./mk/libtool/ |
| | 4 | needed to do this otherwise libtool was not created |
| | 5 | run configure again |
| | 6 | |
| | 7 | edit ./gui/units.c + ./include/agar/math/m_line.h (undeclared HUGE_VAL) |
| | 8 | add: |
| | 9 | |
| | 10 | {{{ |
| | 11 | #if (defined(__BEOS__) || defined(__HAIKU__)) |
| | 12 | #include <math.h> /* declares HUGE_VAL */ |
| | 13 | #endif |
| | 14 | |
| | 15 | }}} |
| | 16 | |
| | 17 | make |
| | 18 | make install |
| | 19 | |
| | 20 | (does not seem to build/create shared libs) |