summaryrefslogtreecommitdiff
path: root/lang/perl5-devel/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lang/perl5-devel: update to 5.41.13Mathieu Arnold2025-05-292-6/+6
| | | | Changes: https://metacpan.org/release/BOOK/perl-5.41.13/view/pod/perldelta.pod
* lang/perl5-devel: update to 5.41.10Mathieu Arnold2025-04-142-4/+4
|
* lang/perl5-devel: update to 5.41.8Mathieu Arnold2025-04-141-5/+5
|
* lang/perl5-devel: update to 5.41.7Mathieu Arnold2025-04-141-2/+2
|
* lang/perl5-devel: update to 5.41.5Mathieu Arnold2025-04-141-2/+2
|
* lang/perl5-devel: update to 5.41.3Mathieu Arnold2024-08-302-4/+4
| | | | | | While there, drop the THREADS option [1] PR: 274192 [1]
* lang/perl5-devel: update to 5.39.10Mathieu Arnold2024-05-253-11/+11
| | | | While there, switch to released tarballs
* lang/perl5*: Link with -pthread instead of -lpthreadTijl Coosemans2023-07-111-10/+33
| | | | | | | | | | | | | | | | | | | | | | During configure of security/p5-Crypt-GCrypt a test program is compiled and run to test libgcrypt. This program segfaults when perl5 is built with the THREADS option. Libgcrypt links with libgpg-error which has an init function which calls into libintl (gettext) which calls pthread functions before libthr is initialised. The compiler command line is provided by perl and it includes both -pthread and -lpthread. Patch perl to remove -lpthread. With -pthread the compiler will pass -lpthread to the linker such that it is initialised early. Discovered by the exp-run for gettext 0.22. While here also remove -lc unconditionally and remove the code that replaced it with -lc_r for old version of FreeBSD because the version test is incorrect (missing a dot). The -pthread flag already tells the compiler to use -lc_r on those old versions. PR: 272210
* lang/perl5-devel: update to latest commitMathieu Arnold2023-07-071-5/+8
|
* lang/perl5-devel: update to latest commitMathieu Arnold2023-06-243-17/+12
| | | | (cherry picked from commit 9bd6ffdcb83d03f14dd9075b0d8967fe094cba59)
* lang/perl5*: remove workarounds for lld 15 and dtrace enabledDimitry Andric2022-12-121-18/+0
| | | | | | | | | | | After https://cgit.freebsd.org/src/commit/?id=be39466a1035, there is no need anymore to patch the perl5 Makefiles to add "-Wl,--allow-multiple-definition" to the linker flags. They should now link with lld 15 and later without any issues. PR: 265516 Fixes: 8c69fc20e6c7 MFH: 2022Q4
* lang/perl5*: alternative workaround for lld 15 and dtrace enabledDimitry Andric2022-09-212-13/+20
| | | | | | | | | | | | | | | | | Modify the workaround committed in 4ae8ff941b29 by only adding -Wl,--allow-multiple-definition to the two link command lines that require it, instead of adding it to hints/freebsd.sh Otherwise, that linker flag is emitted into perl's global configuration (/usr/local/lib/perl5/5.xx/mach/Config_heavy.pl), and might be used by other ports which link in libperl, such as www/mod_perl2, which cannot correctly handle any unexpected linker flags, leading to errors. PR: 265516 Reported by: lev Approved by: maintainer timeout (1 month) Fixes: 4ae8ff941b29 MFH: 2022Q3
* lang/perl5*: work around duplicate symbol errors with lld 15 and dtrace enabledDimitry Andric2022-09-191-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Building any of the lang/perl5* ports with clang and lld 15, and the DTRACE option enabled (which is default on) results in link errors similar to: cc -pthread -Wl,-E -fstack-protector-strong -L/usr/local/lib -o miniperl mpdtrace/opmini.o mpdtrace/perlmini.o mpdtrace/universalmini.o mpdtrace/gv.o mpdtrace/toke.o mpdtrace/perly.o mpdtrace/pad.o mpdtrace/regcomp.o mpdtrace/dump.o mpdtrace/util.o mpdtrace/mg.o mpdtrace/reentr.o mpdtrace/mro_core.o mpdtrace/keywords.o mpdtrace/builtin.o mpdtrace/hv.o mpdtrace/av.o mpdtrace/run.o mpdtrace/pp_hot.o mpdtrace/sv.o mpdtrace/pp.o mpdtrace/scope.o mpdtrace/pp_ctl.o mpdtrace/pp_sys.o mpdtrace/doop.o mpdtrace/doio.o mpdtrace/regexec.o mpdtrace/utf8.o mpdtrace/taint.o mpdtrace/deb.o mpdtrace/globals.o mpdtrace/perlio.o mpdtrace/numeric.o mpdtrace/mathoms.o mpdtrace/locale.o mpdtrace/pp_pack.o mpdtrace/pp_sort.o mpdtrace/caretx.o mpdtrace/dquote.o mpdtrace/time64.o mpdtrace/miniperlmain.o dtrace_mini.o -lpthread -lm -lcrypt -lutil ld: error: duplicate symbol: __dtraceenabled_perl___sub__entry >>> defined in mpdtrace/pp_hot.o >>> defined in mpdtrace/pp_sort.o ld: error: duplicate symbol: __dtraceenabled_perl___sub__entry >>> defined in mpdtrace/pp_hot.o >>> defined in mpdtrace/regexec.o ld: error: duplicate symbol: __dtraceenabled_perl___op__entry >>> defined in mpdtrace/perlmini.o >>> defined in mpdtrace/run.o ld: error: duplicate symbol: __dtraceenabled_perl___op__entry >>> defined in mpdtrace/perlmini.o >>> defined in mpdtrace/dump.o ld: error: duplicate symbol: __dtraceenabled_perl___sub__entry >>> defined in mpdtrace/pp_hot.o >>> defined in mpdtrace/pp_ctl.o cc: error: linker command failed with exit code 1 (use -v to see invocation) Work around these errors by allowing multiple definitions during linking, using the --allow-multiple-definition linker flag. (Note: this flag is also supported by GNU ld.) PR: 265516 Approved by: maintainer timeout (1 month) MFH: 2022Q3
* lang/perl5-devel: update to latest commitMathieu Arnold2022-06-201-4/+4
|
* lang/perl5-devel: update to v5.37.0-91-g975aa39f26Mathieu Arnold2022-06-013-15/+15
|
* lang/perl5-devel: update to v5.35.10-15-g7ddf4b5513Mathieu Arnold2022-03-241-2/+2
|
* lang/perl5-devel: update to v5.35.8-60-gafded0c3c2Mathieu Arnold2022-02-103-7/+7
|
* lang/perl5-devel: update to v5.35.4-102-ge43d289c7cMathieu Arnold2021-10-111-2/+2
|
* lang/perl5-devel: update to latest commitMathieu Arnold2021-09-202-6/+6
|
* lang/perl5-devel: Update to v5.35.0-138-g9b7a2e9a50Mathieu Arnold2021-06-151-4/+4
|
* lang/perl5-devel: Update to v5.35.0-115-g1c1bafd87b.Mathieu Arnold2021-06-071-5/+5
|
* lang/perl5-devel: Update to v5.35.0-68-gfd007c55e2.Mathieu Arnold2021-05-251-2/+2
|
* lang/perl5-devel: Update to v5.33.8-57-gebdbfbc13a.Mathieu Arnold2021-04-191-3/+3
|
* Update to v5.33.6-105-g397e6c111fMathieu Arnold2021-02-151-3/+3
| | | | Notes: svn path=/head/; revision=565307
* Update to v5.33.6-31-g8c5e15d0d7.Mathieu Arnold2021-02-011-2/+2
| | | | Notes: svn path=/head/; revision=563588
* Update to v5.33.5-127-gb52b12abf8Mathieu Arnold2021-01-043-11/+11
| | | | Notes: svn path=/head/; revision=560295
* Update to v5.33.3-110-g09e51a9507.Mathieu Arnold2020-11-091-2/+2
| | | | Notes: svn path=/head/; revision=554708
* Update to v5.33.3-26-gbb58640a40.Mathieu Arnold2020-10-261-4/+4
| | | | Notes: svn path=/head/; revision=553340
* Update to v5.33.2-204-ge6b76f1d3a.Mathieu Arnold2020-10-194-19/+19
| | | | Notes: svn path=/head/; revision=552751
* Update to v5.33.1-201-gb1de2493b5.Mathieu Arnold2020-09-141-4/+4
| | | | Notes: svn path=/head/; revision=548618
* Update to v5.33.1-184-g2bd36f42f4.Mathieu Arnold2020-09-072-4/+4
| | | | Notes: svn path=/head/; revision=547895
* Update to v5.33.1-38-g2385767d71Mathieu Arnold2020-08-242-9/+9
| | | | Notes: svn path=/head/; revision=546087
* Update to v5.33.0-262-g2122602f85.Mathieu Arnold2020-08-171-2/+2
| | | | Notes: svn path=/head/; revision=545167
* Update to v5.33.0-198-g3134649473.Mathieu Arnold2020-08-032-5/+5
| | | | Notes: svn path=/head/; revision=544065
* Update to v5.32.0-RC1-3-g41aa777b4dMathieu Arnold2020-06-081-2/+2
| | | | Notes: svn path=/head/; revision=538223
* Update to v5.31.11-53-gfe49b83f91.Mathieu Arnold2020-05-251-4/+4
| | | | Notes: svn path=/head/; revision=536478
* Update to v5.31.10-24-g95b7e3a36a.Mathieu Arnold2020-03-301-2/+2
| | | | Notes: svn path=/head/; revision=529911
* Update to v5.31.8-135-gd34b46d077.Mathieu Arnold2020-02-111-2/+2
| | | | | | | While there, run portfmt and portclippy a bit. Notes: svn path=/head/; revision=525821
* Update to v5.31.6-115-gd821b3b405.Mathieu Arnold2019-12-093-9/+9
| | | | Notes: svn path=/head/; revision=519613
* Update to v5.31.5-287-gbe45a1e1e4.Mathieu Arnold2019-11-121-2/+2
| | | | Notes: svn path=/head/; revision=517328
* Update to v5.31.5-160-g98f0203bc5.Mathieu Arnold2019-11-041-2/+2
| | | | Notes: svn path=/head/; revision=516644
* Update to v5.31.5-102-g2680ac6d35.Mathieu Arnold2019-10-291-3/+3
| | | | Notes: svn path=/head/; revision=515973
* Update to v5.31.5-59-geeaa50cc8b.Mathieu Arnold2019-10-211-6/+6
| | | | Notes: svn path=/head/; revision=515107
* Update to v5.31.4-361-gf87d8789b9.Mathieu Arnold2019-10-141-5/+5
| | | | Notes: svn path=/head/; revision=514459
* Update to v5.31.3-188-ge62a0811bc.Mathieu Arnold2019-09-161-4/+4
| | | | Notes: svn path=/head/; revision=512188
* Update to v5.31.3-47-ge99ccafab2.Mathieu Arnold2019-09-021-2/+2
| | | | Notes: svn path=/head/; revision=510828
* Update to v5.31.2-94-g96684a73b5.Mathieu Arnold2019-08-121-2/+2
| | | | Notes: svn path=/head/; revision=508744
* Update to v5.31.2-35-g82007f754e.Mathieu Arnold2019-07-301-3/+3
| | | | Notes: svn path=/head/; revision=507652
* Update to v5.31.2-21-g996b0cb8b8Mathieu Arnold2019-07-221-4/+4
| | | | Notes: svn path=/head/; revision=507141
* Update to v5.31.1-148-gdc9ac3ee56.Mathieu Arnold2019-07-152-4/+4
| | | | Notes: svn path=/head/; revision=506659