perl-tk icon indicating copy to clipboard operation
perl-tk copied to clipboard

the perl module Tk

Results 60 perl-tk issues
Sort by recently updated
recently updated
newest added

perl-Tk does not build with gcc14.

There's absolutely nothing new about this issue - but it still hasn't been addressed. The attached patch allows Tk to build on StrawberryPerl-5.38.2. It's the same patch to X.h as...

These language features have been removed from C in 1999. Future compilers are likely to stop accepting these constructs by default. Related to: * https://fedoraproject.org/wiki/Changes/PortingToModernC * https://fedoraproject.org/wiki/Toolchain/PortingToModernC

Backported from Tcl/Tk 8.6.10: see https://core.tcl-lang.org/tk/info/9e31fd944934 Fixes #87 Alternative to #88

Build of perl-Tk-804.036 failed with error in Fedora Rawhide/40: ``` tkCanvText.c: In function ‘GetTextIndex’: tkCanvText.c:1253:40: error: passing argument 2 of ‘TcldeclsVptr->V_Tcl_GetStringFromObj’ from incompatible pointer type [-Wincompatible-pointer-types] 1253 | string =...

I have only encountered this once, but would like to report this in case someone encounters it again. This perl5.22.4-stretch CI run timed out after 6 hours: https://github.com/chrstphrchvz/perl-tk/actions/runs/7964546075/job/21742317875 I am...

See https://github.com/eserte/perl-tk/issues/98#issuecomment-1944054296: Newer compilers may have `-Werror=incompatible-pointer-types` by default. `PL_curcop->cop_warnings` previously had type `SV *`, then `STRLEN *`, and now `char *` as of Perl 5.37.6. Since `old_warn` is only...

See https://github.com/eserte/perl-tk/issues/98#issuecomment-1948125587: Newer compilers may have `-Werror=incompatible-pointer-types` by default. Since pregcomp2.c does not dereference the result of `pregcomp2()`, the result can be assigned to `void *` instead. There is already...

gcc 14 glibc snapshot from Fedora rawhide.All build with `-Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS` in $CFLAGS (this changes some warnings to eerors) Build fails with ```console [tkloczko@pers-jacek Tk-804.036]$ make -k cd pTk &&...

In the `Tk.pm` file there is this piece of code: ``` # This is a workround for Solaris X11 locale handling Preload(DynaLoader::dl_findfile('-L/usr/openwin/lib','-lX11')) if (NeedPreload() && -d '/usr/openwin/lib'); ``` It pre-loads...