diff options
author | mef <mef@pkgsrc.org> | 2021-05-24 14:27:37 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2021-05-24 14:27:37 +0000 |
commit | af26d99bc3eaed482a345ed2805162859748a517 (patch) | |
tree | eb6c99a43d5a51bcf1acdae955f093fa00573c20 /cad/klayout/patches | |
parent | c7d568d1d3b2579add6ae2356ce23e3ef9b7f69f (diff) | |
download | pkgsrc-af26d99bc3eaed482a345ed2805162859748a517.tar.gz |
(cad/klayout) Updated 0.26.10 to 0.26.11 based on the wip/klayout by Atsushi Toyokura, thanks
(0.27.0 is again, waiting)
0.26.11 (2021-02-27):
* Bugfix: %GITHUB%/issues/733
Relative path resolution in session files fails when the session file's path contains
"+" characters
* Enhancement: %GITHUB%/issues/730
Support of class 'QUiLoader' in PYA and RBA
* Bugfix: %GITHUB%/issues/728
Fails to build on Debian hppa: uses non-standard sa_restorer field of struct sigaction
* Bugfix: %GITHUB%/issues/726
Crash on LayoutView#clear_selection on Linux.
* Bugfix: %GITHUB%/issues/723
Backup scheme wasn't working correctly with a single file without path
given as command line argument.
Diffstat (limited to 'cad/klayout/patches')
-rw-r--r-- | cad/klayout/patches/patch-src_lay_lay_laySignalHandler.cc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cad/klayout/patches/patch-src_lay_lay_laySignalHandler.cc b/cad/klayout/patches/patch-src_lay_lay_laySignalHandler.cc deleted file mode 100644 index 2344a67e10f..00000000000 --- a/cad/klayout/patches/patch-src_lay_lay_laySignalHandler.cc +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-src_lay_lay_laySignalHandler.cc,v 1.3 2021/05/22 13:45:52 mef Exp $ - -Add NetBSD - ---- src/lay/lay/laySignalHandler.cc.orig 2020-10-25 01:23:18.681179164 +0000 -+++ src/lay/lay/laySignalHandler.cc -@@ -450,7 +450,7 @@ void install_signal_handlers () - act.sa_sigaction = signal_handler; - sigemptyset (&act.sa_mask); - act.sa_flags = SA_SIGINFO; --#if !defined(__APPLE__) && !defined(__OpenBSD__) -+#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__NetBSD__) - act.sa_restorer = 0; - #endif - |