| 367 | | [http://lists.freebsd.org/mailman/listinfo/freebsd-perl] |
| 368 | | |
| 369 | | [http://lists.freebsd.org/pipermail/freebsd-perl/2008-August/001928.html] |
| | 367 | To run Padre on FreeBSD you have to recompile Perl to support threads (by default Perl on FreeBSD have it disabled). To verify whether your Perl installation have thread support turned on run following command. |
| | 368 | {{{ |
| | 369 | $ perl -V:usethreads |
| | 370 | usethreads='define'; |
| | 371 | }}} |
| | 372 | |
| | 373 | If the result is `define` then you have already threaded Perl installed, otherwise execute: |
| | 374 | {{{ |
| | 375 | # cd /usr/ports/lang/perl5.8 && make WITH_THREADS=yes |
| | 376 | # make deinstall && make reinstall |
| | 377 | }}} |
| | 378 | Optionally you can substitute `make WITH_THREADS=yes` with following and choose `THREADS` in the menu, then deinstall and reinstall Perl as above. |
| | 379 | {{{ |
| | 380 | # make config |
| | 381 | # make |
| | 382 | }}} |
| | 383 | |
| | 384 | To install Padre and it's dependencies just execute: |
| | 385 | {{{ |
| | 386 | # cd /usr/ports/editors/p5-Padre |
| | 387 | # make install clean |
| | 388 | }}} |