summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-06-10Pullup tickets up to #6470pkgsrc-2021Q1bsiegert1-1/+7
2021-06-10Pullup ticket #6469 - requested by niabsiegert2-7/+7
chat/dino: security fix Revisions pulled up: - chat/dino/Makefile 1.11 - chat/dino/distinfo 1.4 - chat/dino/patches/patch-qlite_src_column.vala deleted --- Module Name: pkgsrc Committed By: nia Date: Wed Jun 9 20:22:18 UTC 2021 Modified Files: pkgsrc/chat/dino: Makefile distinfo Removed Files: pkgsrc/chat/dino/patches: patch-qlite_src_column.vala Log Message: dino: update to 0.2.1 Maintenance release with fix for CVE-2021-33896 and bug fixes.
2021-06-10Pullup ticket #6470 - requested by simonbbsiegert1-2/+4
x11/xorgproto: NetBSD-current build fix Revisions pulled up: - x11/xorgproto/builtin.mk 1.9 --- Module Name: pkgsrc Committed By: gutteridge Date: Thu Apr 29 02:57:08 UTC 2021 Modified Files: pkgsrc/x11/xorgproto: builtin.mk Log Message: xorgproto: reflect built-in version present in NetBSD 9.99.82
2021-06-06Pullup tickets up to #6468bsiegert1-1/+10
2021-06-06Pullup ticket #6468 - requested by niabsiegert2-371/+371
www/firefox78-l10n: dependent update Revisions pulled up: - www/firefox78-l10n/Makefile 1.14 - www/firefox78-l10n/distinfo 1.14 --- Module Name: pkgsrc Committed By: nia Date: Tue Jun 1 21:12:37 UTC 2021 Modified Files: pkgsrc/www/firefox78-l10n: Makefile distinfo Log Message: firefox78-l10n: sync with firefox78
2021-06-06Pullup ticket #6467 - requested by niabsiegert3-9/+10
www/firefox78: security fix Revisions pulled up: - www/firefox78/Makefile 1.30 - www/firefox78/PLIST 1.3 - www/firefox78/distinfo 1.17 --- Module Name: pkgsrc Committed By: nia Date: Tue Jun 1 21:07:21 UTC 2021 Modified Files: pkgsrc/www/firefox78: Makefile PLIST distinfo Log Message: firefox78: update to 78.11.0 Security fixes: https://www.mozilla.org/en-US/security/advisories/mfsa2021-24/
2021-05-31Pullup tickets up to #6466bsiegert1-1/+13
2021-05-31Pullup ticket #6466 - requested by tacabsiegert7-28/+60
databases/mysql57-client: security fix Revisions pulled up: - databases/mysql57-client/Makefile.common 1.33-1.34 - databases/mysql57-client/PLIST 1.21 - databases/mysql57-client/distinfo 1.41-1.42 - databases/mysql57-client/patches/patch-cmake_build__configurations_compiler__options.cmake 1.1 - databases/mysql57-client/patches/patch-mysys_kqueue__timers.c 1.2 - databases/mysql57-client/patches/patch-sql_locks_shared__spin__lock.cc 1.2 - databases/mysql57-server/PLIST 1.21 --- Module Name: pkgsrc Committed By: adam Date: Wed Apr 21 13:26:55 UTC 2021 Modified Files: pkgsrc/databases/mysql57-client: Makefile.common PLIST distinfo pkgsrc/databases/mysql57-client/patches: patch-mysys_kqueue__timers.c patch-sql_locks_shared__spin__lock.cc pkgsrc/databases/mysql57-server: PLIST Log Message: mysql57: updated to 5.7.34 Changes in MySQL 5.7.34 (2021-04-20, General Availability) Configuration Notes The CMAKE_BUILD_TYPE CMake option now supports a Release build type, which is like the RelWithDebInfo build type but omits debugging information to reduce the build size. Packaging Notes The bundled libedit library was upgraded to version 20190324-3.1. Binary packages that include curl rather than linking to the system curl library have been upgraded to use curl 7.74.0. Security Notes The linked OpenSSL library for MySQL Server has been updated to version 1.1.1k. Issues fixed in the new OpenSSL version are described at https://www.openssl.org/news/cl111.txt and https://www.openssl.org/news/vulnerabilities.html. Functionality Added or Changed Microsoft Windows: The named_pipe_full_access_group system variable now defaults to an empty string (''), making named pipe connections secure. Previously, '*everyone*' was the default value. A valid Windows local group name may be substituted. Bugs Fixed InnoDB: The introduction of sharded rw_lock_stats counters in MySQL 5.7 caused a regression in CPU cache efficiency. To address this issue in MySQL 5.7, the sharding method was changed. For optimal performance, the rw_lock_stats counter is removed in MySQL 8.0. InnoDB: A delete operation on a parent table that initiated a cascading update on a child table with an indexed virtual column and indexed foreign key constraint column caused a virtual column corruption. InnoDB: An adaptive hash index (AHI) latch was held in shared mode by a thread truncating a large table, causing mutex waits for other threads. The AHI latch was not required and has been removed. InnoDB: The open and close sequence for table share instances (m_share objects) and dictionary table instances was modified to prevent accessing old m_share objects that could point to stale dictionary indexes. Thanks to Yuxiang Jiang for the contribution. InnoDB: An online ALTER TABLE operation failed with an $B!H(BIncorrect key file for table$B!I(B error due to an unnecessary encryption status check that was performed when reading online DDL row logs. Replication: If all previous binary log files were purged at startup because their retention period had expired, the new binary log file contained an empty Previous_gtids event, which could cause errors in replication. The order of initialization has now been changed so that previous binary log files are only purged after the previous GTID set has been written to the new binary log file that is created at startup. Replication: An assertion was raised in debug builds relating to lost GTIDs if binary log files were removed at startup because their retention period had expired. Replication: A deadlock could occur if the binary log file was rotated while system variables were being updated and read by different clients. Replication: The output of a SHOW PROCESSLIST statement for a replica$B!G(Bs SQL thread sometimes showed the last query as currently being applied when the replica was actually caught up. A query string was displayed before it had been rewritten. For builds compiled using the libedit library, if the mysql client was invoked with the --default-character-set=utf8 option, libedit rejected input of multibyte characters. On Windows, large result sets could cause the mysql client to exit unexpectedly. Improper locking on an internal queue could cause mysqlpump to exit unexpectedly. It is now possible to use START REPLICA SQL_THREAD and STOP REPLICA SQL_THREAD statements for the group_replication_applier channel when Group Replication is stopped. This enables an operator to apply any remaining unapplied transactions on a server that left the group, without having to rejoin the server to the group. When the mysql client was used in batch mode, its parser could be confused by USE followed by DROP DATABASE when the USE database name was quoted. While optimizing the ORDER BY clause of a subquery there was a possibility of cleaning up a subquery tree referenced in the outer SELECT, which could lead to a premature exit. A malformed name in the mysql.func system table could cause unexpected server behavior. Sessions could disable their own auditing. Mishandling of stored program local variables could lead to unexpected server behavior. Uninstalling a plugin could affect subsequent execution of prepared statements. --- Module Name: pkgsrc Committed By: adam Date: Thu Apr 29 16:50:33 UTC 2021 Modified Files: pkgsrc/databases/mysql57-client: Makefile.common distinfo Added Files: pkgsrc/databases/mysql57-client/patches: patch-cmake_build__configurations_compiler__options.cmake Log Message: mysql57: fix building with GCC
2021-05-31Pullup ticket #6465 - requested by tacabsiegert2-7/+7
www/squid4: security fix Revisions pulled up: - www/squid4/Makefile 1.18 - www/squid4/distinfo 1.11 --- Module Name: pkgsrc Committed By: taca Date: Mon May 10 14:22:57 UTC 2021 Modified Files: pkgsrc/www/squid4: Makefile distinfo Log Message: www/squid4: update to 4.15 This release fixes these security issues from prior release. * SQUID-2020:11 HTTP Request Smuggling (CVE-2020-25097) * SQUID-2021:1 Denial of Service in URN processing (CVE-2021-28651) * SQUID-2021:2 Denial of Service in HTTP Response Processing (CVE-2021-28662) * SQUID-2021:3 Denial of Service issue in Cache Manager (CVE-2021-28652) * SQUID-2021:4 Multiple issues in HTTP Range header (CVE-2021-31806, CVE-2021-31807, CVE-2021-31808) * SQUID-2021:5 Denial of Service in HTTP Response Processing (CVE pending allocation) Changes in squid-4.15 (10 May 2021): - Bug 5112: Excessively loud chunked reply parsing error reporting - Bug 5106: Broken cache manager URL parsing - Bug 5104: Memory leak in RFC 2169 response parsing - Bug 3556: "FD ... is not an open socket" for accept() problems - Profiling: CPU timing implemented for MAC non-x86 - Fix HttpHeaderStats definition to include hoErrorDetail - Fix Squid-to-client write_timeout triggers client_lifetime timeout - Limit HeaderLookupTable_t::lookup() to BadHdr and specific IDs - Handle more Range requests - Handle more partial responses - Stop processing a response if the Store entry is gone - ... and some portability fixes - ... and some documentation updates
2021-05-31Pullup ticket #6464 - requested by tacabsiegert2-7/+7
net/isc-dhcp4: security fix Revisions pulled up: - net/isc-dhcp4/Makefile.common 1.42 - net/isc-dhcp4/distinfo 1.30 --- Module Name: pkgsrc Committed By: taca Date: Thu May 27 14:10:12 UTC 2021 Modified Files: pkgsrc/net/isc-dhcp4: Makefile.common distinfo Log Message: net/isc-dhcp4: update to 4.4.2p1 Update isc-dhcp4 to 4.4.2p1 (4.4.2-P1). Changes since 4.4.2 (Bug Fixes) ! Corrected a buffer overwrite possible when parsing hexadecimal literals with more than 1024 octets. Reported by Jon Franklin from Dell, and also by Pawel Wieczorkiewicz from Amazon Web Services. [Gitlab #182] CVE: CVE-2021-25217
2021-05-31Pullup ticket #6463 - requested by niabsiegert1-2/+3
emulators/haxm: build fix Revisions pulled up: - emulators/haxm/Makefile 1.18 --- Module Name: pkgsrc Committed By: nia Date: Sat May 29 06:47:05 UTC 2021 Modified Files: pkgsrc/emulators/haxm: Makefile Log Message: haxm: Disable Werror the standard way for share/mk. Don't use compiler flags that may not be supported in older compilers (notably on NetBSD 9)...
2021-05-29Note Pullup ticket #6462bsiegert1-1/+4
2021-05-29Pullup ticket #6462 - requested by gutteridgebsiegert3-9/+9
sysutils/xfce4-thunar: security fix Revisions pulled up: - sysutils/xfce4-thunar/Makefile 1.76 - sysutils/xfce4-thunar/PLIST 1.20 - sysutils/xfce4-thunar/distinfo 1.26 --- Module Name: pkgsrc Committed By: gutteridge Date: Thu May 27 00:12:18 UTC 2021 Modified Files: pkgsrc/sysutils/xfce4-thunar: Makefile PLIST distinfo Log Message: xfce4-thunar: update to 1.8.17 Change log: 1.8.17 ====== - Dont execute files, passed via command line due to security risks That Fixes CVE-2021-32563 - Fix combo box entry order (Issue #435) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian, Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Esperanto, Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Vietnamese 1.8.16 ====== - Add missing parameter to ThunarBrowserPokeDeviceFunc function - Fix error for custom date format in details view (issue #389) - Fix unavailable rubber banding in detailed view (Issue #326) - Ghost file ocasionally remains when dropping file into directory (Fixes #312) - Translation Updates: Albanian, Armenian, Armenian (Armenia), Basque, Belarusian, Chinese (China), Chinese (Hong Kong), Croatian, Eastern Armenian, Esperanto, Estonian, Finnish, French, Hebrew, Hungarian, Indonesian, Interlingue, Italian, Kazakh, Korean, Lithuanian, Portuguese, Slovak, Swedish
2021-05-25Pullup tickets up to #6461bsiegert1-1/+13
2021-05-25Pullup ticket #6461 - requested by niabsiegert4-2/+57
print/mupdf: security fix Revisions pulled up: - print/mupdf/Makefile 1.87 - print/mupdf/distinfo 1.53 - print/mupdf/patches/patch-source_pdf_pdf-parse.c 1.1 - print/mupdf/patches/patch-source_pdf_pdf-xref.c 1.3 --- Module Name: pkgsrc Committed By: nia Date: Tue May 25 07:59:43 UTC 2021 Modified Files: pkgsrc/print/mupdf: Makefile distinfo Added Files: pkgsrc/print/mupdf/patches: patch-source_pdf_pdf-parse.c patch-source_pdf_pdf-xref.c Log Message: mupdf: apply fix for CVE-2021-3407, bump PKGREVISION
2021-05-25Pullup ticket #6460 - requested by niabsiegert3-3/+49
graphics/cairo: security fix Revisions pulled up: - graphics/cairo/Makefile 1.149 - graphics/cairo/distinfo 1.90 - graphics/cairo/patches/patch-src_cairo-image-compositor.c 1.1 --- Module Name: pkgsrc Committed By: nia Date: Tue May 25 07:29:42 UTC 2021 Modified Files: pkgsrc/graphics/cairo: Makefile distinfo Added Files: pkgsrc/graphics/cairo/patches: patch-src_cairo-image-compositor.c Log Message: cairo: apply patch for CVE-2020-35492, bump PKGREVISION
2021-05-25Pullup ticket #6459 - requested by niabsiegert2-1/+19
textproc/libxslt: build fix Revisions pulled up: - textproc/libxslt/distinfo 1.66 - textproc/libxslt/patches/patch-configure 1.3 --- Module Name: pkgsrc Committed By: mcf Date: Mon May 24 04:18:19 UTC 2021 Modified Files: pkgsrc/textproc/libxslt: distinfo Added Files: pkgsrc/textproc/libxslt/patches: patch-configure Log Message: libxslt: fix libxml2 detection with libxml2 >= 2.9.11 xml2-config from libxml2 >= 2.9.11 now exits with non-zero status for invalid arguments. libxslt called xml2-config with the invalid `print` option to probe for its existence, so with new libxml2 it now skipped detection via xml2-config entirely causing a build failure. Apply upstream patch to correct this invalid xml2-config usage.
2021-05-25Pullup ticket #6458 - requested by niabsiegert8-193/+10
textproc/libxml2: security fix Revisions pulled up: - textproc/libxml2/Makefile 1.159 - textproc/libxml2/Makefile.common 1.14 - textproc/libxml2/distinfo 1.135 - textproc/libxml2/patches/patch-parser.c deleted - textproc/libxml2/patches/patch-python-types.c deleted - textproc/libxml2/patches/patch-python_libxml.c deleted - textproc/libxml2/patches/patch-xmlschemas.c deleted - textproc/py-libxml2/Makefile 1.68 --- Module Name: pkgsrc Committed By: nia Date: Sun May 23 19:31:47 UTC 2021 Modified Files: pkgsrc/textproc/libxml2: Makefile Makefile.common distinfo pkgsrc/textproc/py-libxml2: Makefile Removed Files: pkgsrc/textproc/libxml2/patches: patch-parser.c patch-python-types.c patch-python_libxml.c patch-xmlschemas.c Log Message: libxml2: update to 2.9.12 2.9.12: "Brown paper bag release, some recently added sources were missing from the 2.9.11 tarball." 2.9.11: "Prompted by CVE-2021-3541, but this includes an awful lot of serious bug fixes by Nick and others."
2021-05-21Pullup tickets #6456 and #6457bsiegert1-1/+7
2021-05-21Pullup ticket #6457 - requested by gdtbsiegert2-8/+7
net/speedtest-cli: bugfix Revisions pulled up: - net/speedtest-cli/Makefile 1.10 - net/speedtest-cli/distinfo 1.4 --- Module Name: pkgsrc Committed By: gdt Date: Thu Apr 8 16:53:01 UTC 2021 Modified Files: pkgsrc/net/speedtest-cli: Makefile distinfo Log Message: speedtest-cli: Update to 2.1.3 upstream changes: bugfixes (This update appears to work around a recently-observed problem.)
2021-05-21Pullup ticket #6456 - requested by niabsiegert2-4/+7
multimedia/mpv: performance fix Revisions pulled up: - multimedia/mpv/Makefile 1.125 - multimedia/mpv/options.mk 1.28 --- Module Name: pkgsrc Committed By: nia Date: Sun Apr 25 06:09:41 UTC 2021 Modified Files: pkgsrc/multimedia/mpv: Makefile options.mk Log Message: mpv: only disable EGL if unavailable in Mesa reported by mikeqin on IRC
2021-05-07exim security fixbsiegert1-1/+4
2021-05-07Pullup ticket #6455 - requested by absbsiegert3-33/+10
mail/exim: security fix Revisions pulled up: - mail/exim/Makefile 1.185 - mail/exim/distinfo 1.79 - mail/exim/patches/patch-src_store.c deleted --- Module Name: pkgsrc Committed By: abs Date: Tue May 4 20:29:39 UTC 2021 Modified Files: pkgsrc/mail/exim: Makefile distinfo Log Message: Updated mail/exim to 4.94.2 This includes a number of serious security fixes (one of which was included in a now obsoleted pkgsrc patch) CVE-2020-28016 CVE-2020-BDATA CVE-2020-EXOPT CVE-2020-PFPSN CVE-2020-RCPTL CVE-2020-SLCWD CVE-2020-SPRSS Since Exim version 4.94 ----------------------- JH/02 Bug 2587: Fix pam expansion condition. Tainted values are commonly used as arguments, so an implementation trying to copy these into a local buffer was taking a taint-enforcement trap. Fix by using dynamically created buffers. Similar fix for radius expansion condition. JH/03 Bug 2586: Fix listcount expansion operator. Using tainted arguments is reasonable, eg. to count headers. Fix by using dynamically created buffers rather than a local. Do similar fixes for ACL actions "dcc", "log_reject_target", "malware" and "spam"; the arguments are expanded so could be handling tainted values. JH/04 Bug 2590: Fix -bi (newaliases). A previous code rearrangement had broken the (no-op) support for this sendmail command. Restore it to doing nothing, silently, and returning good status. JH/05 Bug 2593: Fix "vacation" in Exim filter. Previously, when a "once" record path was given (or the default used) without a leading directory path, an error occurred on trying to open it. Use the transport's working directory. JH/06 Bug 2594: Change the name used for certificate name checks in the smtp transport. Previously it was the name on the DNS A-record; use instead the head of the CNAME chain leading there (if there is one). This seems to align better with RFC 6125. JH/07 Bug 2597: Fix a resource leak. Using a lookup in obtaining a value for smtp_accept_max_per_host allocated resources which were not released when the limit was exceeded. This eventually crashed the daemon. Fix by adding a relase action in that path. JH/08 Bug 2598: Fix verify ACL condition. The options for the condition are expanded; previously using tainted values was rejected. Fix by using dynamically-created buffers. JH/10 Bug 2603: Fix coding of string copying to only evaluate arguments once. Previously a macro used one argument twice; when called with the argument as an expression having side-effects, incorrect operation resulted. Use an inlineable function. JH/11 Bug 2604: Fix request to cutthrough-deliver when a connection is already held open for a verify callout. Previously this wan not accounted for and a corrupt onward SMTP conversation resulted. JH/13 Fix dsearch "subdir" filter to ignore ".". Previously only ".." was excluded, not matching the documentation. JH/14 Bug 2606: Fix a segfault in sqlite lookups. When no, or a bad, filename was given for the sqlite_dbfile a trap resulted. JH/15 Bug 2620: Fix "spam" ACL condition. Previously, tainted values for the "name" argument resulted in a trap. There is no reason to disallow such; this was a coding error. JH/16 Bug 2615: Fix pause during message reception, on systems that have been suspended/resumed. The Linux CLOCK_MONOTONIC does not account for time spent suspended, ignoring the Posix definition. Previously we assumed it did and a constant offset from real time could be used as a correction. Change to using the same clock source for the start-of-message and the post-message next-tick-wait. Also change to using CLOCK_BOOTTIME if it exists, just to get a clock slightly more aligned to reality. JH/17 Bug 2295: Fix DKIM signing to always semicolon-terminate. Although the RFC says it is optional some validators care. The missing char was not intended but triggered by a line-wrap alignement. Discovery and fix by Guillaume Outters, hacked on by JH. JH/18 Bug 2617: Fix a taint trap in parse_fix_phrase(). Previously when the name being quoted was tainted a trap would be taken. Fix by using dynamicaly created buffers. The routine could have been called by a rewrite with the "h" flag, by using the "-F" command-line option, or by using a "name=" option on a control=submission ACL modifier. JH/21 Bug 2630: Fix eol-replacement string for the ${readsocket } expansion. Previously when a whitespace character was specified it was not inserted after removing the newline. JH/24 Bug 2634: Fix a taint trap seen on NetBSD: the testing coded for is_tainted() had an off-by-one error in the overenthusiastic direction. Find and fix by Gavan. Although NetBSD is not a supported platform for 4.94 this bug could affect other platforms. JH/24 Bug 2634: Fix a taint trap seen on NetBSD: the testing coded for is_tainted() had an off-by-one error in the overenthusiastic direction. Find and fix by Gavan. Although NetBSD is not a supported platform for 4.94 this bug could affect other platforms. JH/21 Bug 2630: Fix eol-replacement string for the ${readsocket } expansion. Previously when a whitespace character was specified it was not inserted after removing the newline. JH/22 Bug 2265: Force SNI usage for smtp transport DANE'd connections, to be the domain part of the recipient address. This overrides any tls_sni option set, which was previously used. JH/23 Logging: with the +tls_sni log_selector, do not wrap the received SNI in quotes. JH/26 Bug 2646: fix a memory usage issue in ldap lookups. Previously, when more than one server was defined and depending on the platform memory layout details, an internal consistency trap could be hit while walking the list of servers. JH/27 Bug 2648: fix the passing of an authenticator public-name through spool files. The value is used by the authresults expansion item. Previously if this was used in a router or transport, a crash could result. JH/30 Bug 2677: fix matching of long addresses. Since 4.93 a limit of 256 was applied. This resulted, if any header-line rewrite rules were configured, in a panic-log trigerrable by sending a message with a long address in a header. Fix by increaing the arbitrary limit to larger than a single (dewrapped) 5322 header line maximum size. JH/31 The ESMTP option name advertised for the SUPPORT_EARLY_PIPE build option is changed from X_PIPE_CONNECT to PIPE_CONNECT. This is in line with RFC 6648 which deprecates X- options in protocols as a general practice. Changeover between the implementations is handled by the mechanisms alrready coded. JH/32 Bug 2599: fix delay of delivery to a local address where there is also a remote which uses callout/hold. Previously the local was queued. JH/33 Fix a taint trap in the ${listextract } expansion when the source data was tainted. JH/35 Bug 2343: Harden exim_tidydb against corrupt wait- files. JH/36 Bug 2687: Fix interpretation of multiple ^ chars in a plaintext authenticator client_send option. Previously the next char, after a pair was collapsed, was taken verbatim (so ^^^foo became ^^foo; ^^^^foo became ^^\x00foo). Fixed to get ^\x00foo and ^^foo respectively to match the documentation. There is still no way to get a leading ^ immediately after a NUL (ie. for the password of a PLAIN method authenticator. JH/39 Bug 2691: fix $local_part_data. When the matching list element referred to a file, bad data was returned. This likely also affected $domain_part_data. JH/41 Fix daemon SIGHUP on FreeBSD. Previously, a named socket for IPC was left undeleted; the attempt to re-create it then failed - resulting in the usual "SIGHUP tp have daemon reload configuration" to not work. This affected any platform not supporting "abstract" Unix-domain sockets (i.e. not Linux). JH/42 Bug 2692: Harden against a peer which reneges on a 452 "too many recipients" response to RCPT in a later response, with a 250. The previous coding assumed this would not happen, and under PIPELINING would result in both lost and duplicate recipients for a message. JH/43 Bug 2694: Fix weighted distribution of work to multiple spamd servers. Previously the weighting was incorrectly applied. Similar fix for socks proxies. Found and fixed by Heiko Schlichting. JH/44 Bug 2701: Fix list-expansion of dns_ipv4_lookup. Previously, it did not handle sub-lists included using the +namedlist syntax. While investigating, the same found for dns_trust_aa, dns_again_means_nonexist, dnssec_require_domains, dnssec_request_domains, srv_fail_domains, mx_fail_domains. HS/01 Enforce absolute PID file path name. HS/02 Handle SIGINT as we handle SIGTERM: terminate the Exim process. PP/01 Add a too-many-bad-recipients guard to the default config's RCPT ACL. PP/02 Bug 2643: Correct TLS DH constants. A missing NUL termination in our code-generation tool had led to some incorrect Diffie-Hellman constants in the Exim source. Reported by kylon94, code-gen tool fix by Simon Arlott. PP/03 Impose security length checks on various command-line options. Fixes CVE-2020-SPRSS reported by Qualys. PP/04 Fix Linux security issue CVE-2020-SLCWD and guard against PATH_MAX better. Reported by Qualys. PP/05 Fix security issue CVE-2020-PFPSN and guard against cmdline invoker providing a particularly obnoxious sender full name. Reported by Qualys. PP/06 Fix CVE-2020-28016 (PFPZA): Heap out-of-bounds write in parse_fix_phrase() PP/07 Refuse to allocate too little memory, block negative/zero allocations. Security guard. PP/08 Change default for recipients_max from unlimited to 50,000. PP/09 Fix security issue with too many recipients on a message (to remove a known security problem if someone does set recipients_max to unlimited, or if local additions add to the recipient list). Fixes CVE-2020-RCPTL reported by Qualys. PP/10 Fix security issue in SMTP verb option parsing Fixes CVE-2020-EXOPT reported by Qualys. PP/11 Fix security issue in BDAT state confusion. Ensure we reset known-good where we know we need to not be reading BDAT data, as a general case fix, and move the places where we switch to BDAT mode until after various protocol state checks. Fixes CVE-2020-BDATA reported by Qualys. HS/03 Die on "/../" in msglog file names QS/01 Creation of (database) files in $spool_dir: only uid=0 or the uid of the Exim runtime user are allowed to create files. QS/02 PID file creation/deletion: only possible if uid=0 or uid is the Exim runtime user. QS/03 When reading the output from interpreted forward files we do not pass the pipe between the parent and the interpreting process to executed child processes (if any). QS/04 Always die if requested from internal logging, even is logging is disabled. --- Module Name: pkgsrc Committed By: wiz Date: Thu May 6 07:08:54 UTC 2021 Removed Files: pkgsrc/mail/exim/patches: patch-src_store.c Log Message: exim: remove patch from distinfo that was removed from repository during update
2021-04-30Pullup tickets up to #6454bsiegert1-1/+10
2021-04-30Pullup ticket #6454 - requested by tacabsiegert2-7/+7
net/bind916: security fix Revisions pulled up: - net/bind916/Makefile 1.12-1.13 - net/bind916/distinfo 1.12 --- Module Name: pkgsrc Committed By: adam Date: Wed Apr 21 11:43:04 UTC 2021 Modified Files: pkgsrc/archivers/ark: Makefile pkgsrc/archivers/arqiver: Makefile pkgsrc/archivers/karchive: Makefile buildlink3.mk pkgsrc/archivers/lxqt-archiver: Makefile pkgsrc/archivers/quazip: Makefile buildlink3.mk pkgsrc/audio/ardour: Makefile pkgsrc/audio/ario: Makefile pkgsrc/audio/audacious: Makefile buildlink3.mk pkgsrc/audio/audacious-plugins: Makefile pkgsrc/audio/bmp: Makefile pkgsrc/audio/buzztrax: Makefile pkgsrc/audio/cantata: Makefile pkgsrc/audio/cddb-bundle: Makefile pkgsrc/audio/cdplayer: Makefile pkgsrc/audio/ezstream: Makefile pkgsrc/audio/flactag: Makefile pkgsrc/audio/forked-daapd: Makefile pkgsrc/audio/gbemol: Makefile pkgsrc/audio/glurp: Makefile pkgsrc/audio/glyr: Makefile buildlink3.mk pkgsrc/audio/gmpc: Makefile pkgsrc/audio/gmpc-albumview: Makefile pkgsrc/audio/gmpc-jamendo: Makefile pkgsrc/audio/gmpc-lyrics: Makefile pkgsrc/audio/gmpc-lyricwiki: Makefile pkgsrc/audio/gmpc-magnatune: Makefile pkgsrc/audio/gmpc-tagedit: Makefile pkgsrc/audio/grip: Makefile pkgsrc/audio/gst-plugins0.10-a52: Makefile pkgsrc/audio/gst-plugins0.10-dts: Makefile pkgsrc/audio/gst-plugins0.10-faac: Makefile pkgsrc/audio/gst-plugins0.10-faad: Makefile pkgsrc/audio/gst-plugins0.10-flac: Makefile pkgsrc/audio/gst-plugins0.10-fluendo-mp3: Makefile pkgsrc/audio/gst-plugins0.10-jack: Makefile pkgsrc/audio/gst-plugins0.10-lame: Makefile pkgsrc/audio/gst-plugins0.10-mad: Makefile pkgsrc/audio/gst-plugins0.10-musepack: Makefile pkgsrc/audio/gst-plugins0.10-oss: Makefile pkgsrc/audio/gst-plugins0.10-pulse: Makefile pkgsrc/audio/gst-plugins0.10-sid: Makefile pkgsrc/audio/gst-plugins0.10-soundtouch: Makefile pkgsrc/audio/gst-plugins0.10-spc: Makefile pkgsrc/audio/gst-plugins0.10-speex: Makefile pkgsrc/audio/gst-plugins0.10-twolame: Makefile pkgsrc/audio/gst-plugins0.10-wavpack: Makefile pkgsrc/audio/gtkpod: Makefile pkgsrc/audio/hydrogen: Makefile pkgsrc/audio/icecast: Makefile pkgsrc/audio/ices-mp3: Makefile pkgsrc/audio/jack-rack: Makefile pkgsrc/audio/kid3: Makefile pkgsrc/audio/libgpod: Makefile buildlink3.mk pkgsrc/audio/libmusicbrainz5: Makefile buildlink3.mk pkgsrc/audio/liteamp: Makefile pkgsrc/audio/lmms: Makefile pkgsrc/audio/mixxx: Makefile pkgsrc/audio/mp3diags: Makefile pkgsrc/audio/musescore: Makefile pkgsrc/audio/musicpd: Makefile pkgsrc/audio/ncmpcpp: Makefile pkgsrc/audio/paman: Makefile pkgsrc/audio/paprefs: Makefile pkgsrc/audio/pavucontrol: Makefile pkgsrc/audio/pavucontrol-qt: Makefile pkgsrc/audio/pavumeter: Makefile pkgsrc/audio/pragha: Makefile pkgsrc/audio/py-musique: Makefile pkgsrc/audio/qjackctl: Makefile pkgsrc/audio/qmmp: Makefile pkgsrc/audio/qsynth: Makefile pkgsrc/audio/quodlibet: Makefile pkgsrc/audio/rhythmbox: Makefile pkgsrc/audio/solfege: Makefile pkgsrc/audio/sound-juicer: Makefile pkgsrc/audio/spotify-qt: Makefile pkgsrc/audio/streamtuner: Makefile pkgsrc/audio/terminatorx: Makefile pkgsrc/audio/traverso: Makefile pkgsrc/audio/xfce4-mixer: Makefile pkgsrc/audio/xfce4-xmms-plugin: Makefile pkgsrc/benchmarks/dnsperf: Makefile pkgsrc/benchmarks/sysbench: Makefile pkgsrc/biology/bodr: Makefile pkgsrc/biology/gnome-chemistry-utils: Makefile pkgsrc/biology/gromacs: Makefile pkgsrc/biology/molsketch: Makefile pkgsrc/biology/ncbi-blast+: Makefile pkgsrc/biology/openbabel: Makefile buildlink3.mk pkgsrc/cad/gtkwave: Makefile pkgsrc/cad/klayout: Makefile pkgsrc/cad/librecad: Makefile pkgsrc/cad/libredwg: Makefile pkgsrc/cad/openscad: Makefile pkgsrc/cad/qcad: Makefile pkgsrc/chat/anope: Makefile pkgsrc/chat/carbons-purple: Makefile pkgsrc/chat/centerim5: Makefile pkgsrc/chat/dino: Makefile pkgsrc/chat/farstream: Makefile pkgsrc/chat/finch: Makefile pkgsrc/chat/hexchat: Makefile pkgsrc/chat/jabberd2: Makefile pkgsrc/chat/konversation: Makefile pkgsrc/chat/ktp-accounts-kcm: Makefile pkgsrc/chat/ktp-approver: Makefile pkgsrc/chat/ktp-auth-handler: Makefile pkgsrc/chat/ktp-common-internals: Makefile buildlink3.mk pkgsrc/chat/ktp-contact-list: Makefile pkgsrc/chat/ktp-contact-runner: Makefile pkgsrc/chat/ktp-desktop-applets: Makefile pkgsrc/chat/ktp-filetransfer-handler: Makefile pkgsrc/chat/ktp-kded-integration-module: Makefile pkgsrc/chat/ktp-send-file: Makefile pkgsrc/chat/ktp-text-ui: Makefile pkgsrc/chat/libfolks: Makefile pkgsrc/chat/libgadu: Makefile pkgsrc/chat/libpurple: Makefile buildlink3.mk pkgsrc/chat/libtelepathy: Makefile pkgsrc/chat/lurch-purple: Makefile pkgsrc/chat/mumble: Makefile pkgsrc/chat/pidgin: Makefile buildlink3.mk pkgsrc/chat/pidgin-facebookchat: Makefile pkgsrc/chat/pidgin-icb: Makefile pkgsrc/chat/pidgin-latex: Makefile pkgsrc/chat/pidgin-libnotify: Makefile pkgsrc/chat/pidgin-otr: Makefile pkgsrc/chat/pidgin-sametime: Makefile pkgsrc/chat/pidgin-silc: Makefile pkgsrc/chat/profanity: Makefile pkgsrc/chat/psi: Makefile pkgsrc/chat/quassel: Makefile pkgsrc/chat/skypeweb-purple: Makefile pkgsrc/chat/spectrum: Makefile pkgsrc/chat/srain: Makefile pkgsrc/chat/swift: Makefile pkgsrc/chat/telegram-purple: Makefile pkgsrc/chat/telepathy-gabble: Makefile pkgsrc/chat/telepathy-glib: Makefile pkgsrc/chat/telepathy-haze: Makefile pkgsrc/chat/telepathy-idle: Makefile pkgsrc/chat/telepathy-logger: Makefile buildlink3.mk pkgsrc/chat/telepathy-mission-control5: Makefile pkgsrc/chat/telepathy-qt5: Makefile buildlink3.mk pkgsrc/chat/znc: Makefile pkgsrc/comms/asterisk13: Makefile pkgsrc/comms/asterisk15: Makefile pkgsrc/comms/asterisk16: Makefile pkgsrc/comms/libopensync: Makefile buildlink3.mk pkgsrc/comms/libopensync-plugin-file: Makefile pkgsrc/comms/libopensync-plugin-syncml: Makefile pkgsrc/comms/libsyncml: Makefile pkgsrc/comms/msynctool: Makefile pkgsrc/comms/multisync-gui: Makefile pkgsrc/comms/spandsp: Makefile pkgsrc/comms/tilp2: Makefile pkgsrc/comms/xfce4-modemlights-plugin: Makefile pkgsrc/converters/libabw: Makefile pkgsrc/converters/libcdr: Makefile buildlink3.mk pkgsrc/converters/libe-book: Makefile pkgsrc/converters/libetonyek: Makefile pkgsrc/converters/libfreehand: Makefile pkgsrc/converters/libmspub: Makefile pkgsrc/converters/libqxp: Makefile pkgsrc/converters/libvisio: Makefile buildlink3.mk pkgsrc/converters/libzmf: Makefile pkgsrc/converters/pyzy: Makefile buildlink3.mk pkgsrc/converters/wv: Makefile buildlink3.mk pkgsrc/converters/wv2: Makefile buildlink3.mk pkgsrc/databases/SQLiteCpp: Makefile buildlink3.mk pkgsrc/databases/couchdb: Makefile pkgsrc/databases/csharp-mysql: Makefile pkgsrc/databases/deforaos-libdatabase: Makefile pkgsrc/databases/erlang-sqlite3: Makefile pkgsrc/databases/gom: Makefile pkgsrc/databases/gourmet: Makefile pkgsrc/databases/gramps3: Makefile pkgsrc/databases/gtkdbfeditor: Makefile pkgsrc/databases/guile-sqlite3: Makefile pkgsrc/databases/idzebra: Makefile buildlink3.mk pkgsrc/databases/kldap: Makefile buildlink3.mk pkgsrc/databases/libdbi-driver-sqlite3: Makefile pkgsrc/databases/libgda: Makefile buildlink3.mk pkgsrc/databases/libgda-mysql: Makefile pkgsrc/databases/libgda-postgres: Makefile pkgsrc/databases/libzdb: Makefile buildlink3.mk pkgsrc/databases/lua-dbi-sqlite3: Makefile pkgsrc/databases/lua-lsqlite3: Makefile pkgsrc/databases/lua-sql-sqlite3: Makefile pkgsrc/databases/lua-sqlite3: Makefile pkgsrc/databases/mongo-c-driver: Makefile buildlink3.mk pkgsrc/databases/mongodb: Makefile pkgsrc/databases/mongodb3: Makefile pkgsrc/databases/mysql-workbench: Makefile pkgsrc/databases/ocaml-sqlite3: Makefile pkgsrc/databases/p5-DBD-SQLite: Makefile pkgsrc/databases/p5-RRD-Simple: Makefile pkgsrc/databases/pgadmin3: Makefile pkgsrc/databases/php-mongodb: Makefile pkgsrc/databases/php-pdo_sqlite: Makefile pkgsrc/databases/php-rrd: Makefile pkgsrc/databases/php-sqlite3: Makefile pkgsrc/databases/poco-data-sqlite: Makefile buildlink3.mk pkgsrc/databases/postgresql-postgis2: Makefile buildlink3.mk pkgsrc/databases/postgresql-promscale_extension: Makefile pkgsrc/databases/postgresql10: Makefile pkgsrc/databases/postgresql10-client: Makefile pkgsrc/databases/postgresql10-contrib: Makefile pkgsrc/databases/postgresql10-docs: Makefile pkgsrc/databases/postgresql10-plperl: Makefile pkgsrc/databases/postgresql10-plpython: Makefile pkgsrc/databases/postgresql10-pltcl: Makefile pkgsrc/databases/postgresql10-server: Makefile pkgsrc/databases/postgresql11: Makefile pkgsrc/databases/postgresql11-client: Makefile pkgsrc/databases/postgresql11-contrib: Makefile pkgsrc/databases/postgresql11-docs: Makefile pkgsrc/databases/postgresql11-plperl: Makefile pkgsrc/databases/postgresql11-plpython: Makefile pkgsrc/databases/postgresql11-pltcl: Makefile pkgsrc/databases/postgresql11-server: Makefile pkgsrc/databases/postgresql12: Makefile pkgsrc/databases/postgresql12-client: Makefile pkgsrc/databases/postgresql12-contrib: Makefile pkgsrc/databases/postgresql12-docs: Makefile pkgsrc/databases/postgresql12-plperl: Makefile pkgsrc/databases/postgresql12-plpython: Makefile pkgsrc/databases/postgresql12-pltcl: Makefile pkgsrc/databases/postgresql12-server: Makefile pkgsrc/databases/postgresql13: Makefile pkgsrc/databases/postgresql13-client: Makefile pkgsrc/databases/postgresql13-contrib: Makefile pkgsrc/databases/postgresql13-docs: Makefile pkgsrc/databases/postgresql13-plperl: Makefile pkgsrc/databases/postgresql13-plpython: Makefile pkgsrc/databases/postgresql13-pltcl: Makefile pkgsrc/databases/postgresql13-server: Makefile pkgsrc/databases/postgresql95: Makefile pkgsrc/databases/postgresql95-client: Makefile pkgsrc/databases/postgresql95-contrib: Makefile pkgsrc/databases/postgresql95-docs: Makefile pkgsrc/databases/postgresql95-plperl: Makefile pkgsrc/databases/postgresql95-plpython: Makefile pkgsrc/databases/postgresql95-pltcl: Makefile pkgsrc/databases/postgresql95-server: Makefile pkgsrc/databases/postgresql96: Makefile pkgsrc/databases/postgresql96-client: Makefile pkgsrc/databases/postgresql96-contrib: Makefile pkgsrc/databases/postgresql96-docs: Makefile pkgsrc/databases/postgresql96-plperl: Makefile pkgsrc/databases/postgresql96-plpython: Makefile pkgsrc/databases/postgresql96-pltcl: Makefile pkgsrc/databases/postgresql96-server: Makefile pkgsrc/databases/py-apsw: Makefile pkgsrc/databases/py-peewee: Makefile pkgsrc/databases/py-rrdtool: Makefile pkgsrc/databases/py-sqlite2: Makefile pkgsrc/databases/py-sqlite3: Makefile pkgsrc/databases/qore-sqlite3-module: Makefile pkgsrc/databases/repmgr: Makefile pkgsrc/databases/rrdtool: Makefile buildlink3.mk pkgsrc/databases/ruby-do_sqlite3: Makefile pkgsrc/databases/ruby-rrdtool: Makefile pkgsrc/databases/ruby-sqlite3: Makefile pkgsrc/databases/shared-mime-info: Makefile pkgsrc/databases/soci: Makefile pkgsrc/databases/sqlite3: Makefile buildlink3.mk pkgsrc/databases/sqlite3-tcl: Makefile pkgsrc/databases/sqlitebrowser: Makefile pkgsrc/databases/sqlrelay-sqlite: Makefile pkgsrc/databases/virtuoso: Makefile pkgsrc/databases/vsqlite++: Makefile buildlink3.mk pkgsrc/devel/GConf: Makefile buildlink3.mk pkgsrc/devel/GConf-ui: Makefile buildlink3.mk pkgsrc/devel/Gorm: Makefile pkgsrc/devel/ObjectiveLib: Makefile pkgsrc/devel/ProjectCenter: Makefile pkgsrc/devel/Renaissance: Makefile buildlink3.mk pkgsrc/devel/SOPE: Makefile pkgsrc/devel/SOPE4: Makefile pkgsrc/devel/aegis: Makefile pkgsrc/devel/anjuta: Makefile pkgsrc/devel/appdata-tools: Makefile pkgsrc/devel/appstream-glib: Makefile pkgsrc/devel/apr-util: Makefile pkgsrc/devel/at-spi: Makefile buildlink3.mk pkgsrc/devel/autogen: Makefile pkgsrc/devel/cervisia: Makefile pkgsrc/devel/cmake-gui: Makefile pkgsrc/devel/coconut: Makefile pkgsrc/devel/compiz-bcop: Makefile pkgsrc/devel/compizconfig-backend-gconf: Makefile buildlink3.mk pkgsrc/devel/cppcheck: Makefile pkgsrc/devel/creduce: Makefile pkgsrc/devel/cutter: Makefile pkgsrc/devel/devhelp: Makefile pkgsrc/devel/dia2code: Makefile pkgsrc/devel/distccmon-gnome: Makefile pkgsrc/devel/dolphin-plugins: Makefile pkgsrc/devel/doxygen: Makefile pkgsrc/devel/doxymacs: Makefile pkgsrc/devel/dumpet: Makefile pkgsrc/devel/edcommon: Makefile pkgsrc/devel/fossil: Makefile pkgsrc/devel/frama-c: Makefile pkgsrc/devel/gconfmm: Makefile buildlink3.mk pkgsrc/devel/gdl: Makefile pkgsrc/devel/gearmand: Makefile pkgsrc/devel/glade: Makefile buildlink3.mk pkgsrc/devel/global: Makefile pkgsrc/devel/gmtk: Makefile buildlink3.mk pkgsrc/devel/gnustep-base: Makefile buildlink3.mk pkgsrc/devel/gnustep-examples: Makefile pkgsrc/devel/gps: Makefile pkgsrc/devel/grantlee-qt5: Makefile buildlink3.mk pkgsrc/devel/guile-gnome: Makefile pkgsrc/devel/hyperscan: Makefile pkgsrc/devel/include-what-you-use: Makefile pkgsrc/devel/java-subversion: Makefile pkgsrc/devel/kapptemplate: Makefile pkgsrc/devel/kbookmarks: Makefile buildlink3.mk pkgsrc/devel/kcachegrind: Makefile pkgsrc/devel/kcmutils: Makefile buildlink3.mk pkgsrc/devel/kconfig: Makefile buildlink3.mk pkgsrc/devel/kcoreaddons: Makefile buildlink3.mk pkgsrc/devel/kcrash: Makefile buildlink3.mk pkgsrc/devel/kde-dev-scripts: Makefile pkgsrc/devel/kde-dev-utils: Makefile pkgsrc/devel/kdeclarative: Makefile buildlink3.mk pkgsrc/devel/kdesdk-kioslaves: Makefile pkgsrc/devel/kdesdk-strigi-analyzers: Makefile pkgsrc/devel/kdesdk-thumbnailers: Makefile pkgsrc/devel/kdevelop4: Makefile pkgsrc/devel/kdevplatform: Makefile pkgsrc/devel/kdiff3: Makefile pkgsrc/devel/kdoctools: Makefile buildlink3.mk pkgsrc/devel/ki18n: Makefile pkgsrc/devel/kidletime: Makefile buildlink3.mk pkgsrc/devel/kio: Makefile buildlink3.mk pkgsrc/devel/kio-extras: Makefile pkgsrc/devel/kitemmodels: Makefile buildlink3.mk pkgsrc/devel/knotifications: Makefile buildlink3.mk pkgsrc/devel/knotifyconfig: Makefile buildlink3.mk pkgsrc/devel/kompare: Makefile pkgsrc/devel/kpackage: Makefile buildlink3.mk pkgsrc/devel/kparts: Makefile buildlink3.mk pkgsrc/devel/kpeople: Makefile buildlink3.mk pkgsrc/devel/kpty: Makefile buildlink3.mk pkgsrc/devel/kross: Makefile buildlink3.mk pkgsrc/devel/krunner: Makefile buildlink3.mk pkgsrc/devel/kservice: Makefile buildlink3.mk pkgsrc/devel/ktexteditor: Makefile buildlink3.mk pkgsrc/devel/kwayland: Makefile buildlink3.mk pkgsrc/devel/kyua: Makefile pkgsrc/devel/libappindicator: Makefile pkgsrc/devel/libbonobo: Makefile buildlink3.mk pkgsrc/devel/libbonoboui: Makefile buildlink3.mk pkgsrc/devel/libcompizconfig: Makefile buildlink3.mk pkgsrc/devel/libdbusmenu-qt5: Makefile buildlink3.mk pkgsrc/devel/libextractor: Makefile buildlink3.mk pkgsrc/devel/libglade: Makefile buildlink3.mk pkgsrc/devel/libglademm: Makefile buildlink3.mk pkgsrc/devel/libgnome: Makefile buildlink3.mk pkgsrc/devel/libgnomemm: Makefile buildlink3.mk pkgsrc/devel/libgnomeui: Makefile buildlink3.mk pkgsrc/devel/libgnomeuimm: Makefile buildlink3.mk pkgsrc/devel/libgnt: Makefile buildlink3.mk pkgsrc/devel/libgphoto2: Makefile buildlink3.mk pkgsrc/devel/libgsf: Makefile buildlink3.mk pkgsrc/devel/libgweather: Makefile buildlink3.mk pkgsrc/devel/libhid: Makefile pkgsrc/devel/libkgapi: Makefile pkgsrc/devel/libkomparediff2: Makefile buildlink3.mk pkgsrc/devel/liblangtag: Makefile pkgsrc/devel/libsexy: Makefile buildlink3.mk pkgsrc/devel/libsexymm: Makefile buildlink3.mk pkgsrc/devel/libxenserver: Makefile buildlink3.mk pkgsrc/devel/lokalize: Makefile pkgsrc/devel/lxqt-build-tools: Makefile pkgsrc/devel/m17n-lib: Makefile buildlink3.mk pkgsrc/devel/meld: Makefile pkgsrc/devel/monotone: Makefile pkgsrc/devel/monotone-viz: Makefile pkgsrc/devel/nss: Makefile pkgsrc/devel/ocamlgraph: Makefile pkgsrc/devel/okteta: Makefile pkgsrc/devel/opengrok: Makefile pkgsrc/devel/p5-Gnome2: Makefile pkgsrc/devel/p5-Gnome2-GConf: Makefile pkgsrc/devel/p5-Gtk2-GladeXML: Makefile pkgsrc/devel/p5-subversion: Makefile pkgsrc/devel/plasma-wayland-protocols: Makefile pkgsrc/devel/poxml: Makefile pkgsrc/devel/purpose: Makefile buildlink3.mk pkgsrc/devel/py-compizconfig: Makefile buildlink3.mk pkgsrc/devel/py-pysvn: Makefile pkgsrc/devel/py-subversion: Makefile pkgsrc/devel/py-subvertpy: Makefile pkgsrc/devel/py-tortoisehg: Makefile pkgsrc/devel/py-tryton: Makefile pkgsrc/devel/qconf: Makefile pkgsrc/devel/radare2-cutter: Makefile pkgsrc/devel/rapidsvn: Makefile pkgsrc/devel/ruby-redmine: Makefile pkgsrc/devel/ruby-subversion: Makefile pkgsrc/devel/startbug1: Makefile pkgsrc/devel/subversion-base: Makefile buildlink3.mk pkgsrc/devel/threadweaver: Makefile buildlink3.mk pkgsrc/devel/umbrello: Makefile pkgsrc/devel/verifast: Makefile pkgsrc/devel/wayland: Makefile pkgsrc/devel/woboq_codebrowser: Makefile pkgsrc/devel/zeal: Makefile pkgsrc/editors/Sigil: Makefile pkgsrc/editors/TeXmacs: Makefile pkgsrc/editors/abiword: Makefile buildlink3.mk pkgsrc/editors/abiword-plugins: Makefile pkgsrc/editors/codelite: Makefile pkgsrc/editors/emacs25: Makefile pkgsrc/editors/emacs26: Makefile pkgsrc/editors/emacs27: Makefile pkgsrc/editors/feathernotes: Makefile pkgsrc/editors/featherpad: Makefile pkgsrc/editors/focuswriter: Makefile pkgsrc/editors/gedit: Makefile pkgsrc/editors/gobby: Makefile pkgsrc/editors/gtranslator: Makefile pkgsrc/editors/gummi: Makefile pkgsrc/editors/kate: Makefile pkgsrc/editors/kile: Makefile pkgsrc/editors/lyx: Makefile pkgsrc/editors/medit: Makefile pkgsrc/editors/pluma: Makefile pkgsrc/editors/poedit: Makefile pkgsrc/editors/qtcreator: Makefile pkgsrc/editors/sasm: Makefile pkgsrc/editors/tea: Makefile pkgsrc/editors/tepl4: Makefile buildlink3.mk pkgsrc/editors/texmaker: Makefile pkgsrc/editors/texstudio: Makefile pkgsrc/editors/texworks: Makefile pkgsrc/editors/vim-gtk2: Makefile pkgsrc/editors/xfce4-mousepad: Makefile pkgsrc/editors/xournal: Makefile pkgsrc/editors/xournalpp: Makefile pkgsrc/emulators/PC6001VX: Makefile pkgsrc/emulators/bsnes: Makefile pkgsrc/emulators/ckmame: Makefile pkgsrc/emulators/fuse-emulator: Makefile pkgsrc/emulators/mame: Makefile pkgsrc/emulators/mgba: Makefile pkgsrc/emulators/retroarch: Makefile pkgsrc/emulators/rpcemu: Makefile pkgsrc/emulators/ski: Makefile pkgsrc/emulators/wine: Makefile pkgsrc/emulators/yabause: Makefile pkgsrc/filesystems/cloudfuse: Makefile pkgsrc/filesystems/fuse-darling-dmg: Makefile pkgsrc/filesystems/fuse-gphotofs: Makefile pkgsrc/filesystems/fuse-loggedfs: Makefile pkgsrc/filesystems/fuse-pod: Makefile pkgsrc/filesystems/fuse-svnfs: Makefile pkgsrc/filesystems/glusterfs: Makefile pkgsrc/filesystems/ltfs: Makefile pkgsrc/filesystems/ltfs-ltotape: Makefile pkgsrc/filesystems/ori: Makefile pkgsrc/finance/bitcoin: Makefile pkgsrc/finance/gnucash: Makefile pkgsrc/finance/homebank: Makefile pkgsrc/finance/libofx: Makefile pkgsrc/fonts/fontforge: Makefile pkgsrc/fonts/gucharmap: Makefile buildlink3.mk pkgsrc/fonts/harfbuzz-icu: Makefile pkgsrc/games/amor: Makefile pkgsrc/games/armagetronad: Makefile pkgsrc/games/armagetronad-server: Makefile pkgsrc/games/atomix: Makefile pkgsrc/games/blinken: Makefile pkgsrc/games/bomber: Makefile pkgsrc/games/bovo: Makefile pkgsrc/games/ccgo: Makefile pkgsrc/games/crossfire-server: Makefile pkgsrc/games/easyrpg-player: Makefile pkgsrc/games/eternal-lands: Makefile pkgsrc/games/etlegacy: Makefile pkgsrc/games/etlegacy-server: Makefile pkgsrc/games/flightgear: Makefile pkgsrc/games/fna: Makefile buildlink3.mk pkgsrc/games/fnaify: Makefile pkgsrc/games/gamazons: Makefile pkgsrc/games/gbrainy: Makefile pkgsrc/games/gcompris: Makefile pkgsrc/games/genecys-client: Makefile pkgsrc/games/gnome-mastermind: Makefile pkgsrc/games/granatier: Makefile pkgsrc/games/grhino: Makefile pkgsrc/games/kajongg: Makefile pkgsrc/games/kanagram: Makefile pkgsrc/games/kanatest: Makefile pkgsrc/games/kapman: Makefile pkgsrc/games/katomic: Makefile pkgsrc/games/kblackbox: Makefile pkgsrc/games/kblocks: Makefile pkgsrc/games/kbounce: Makefile pkgsrc/games/kbreakout: Makefile pkgsrc/games/kdiamond: Makefile pkgsrc/games/kfourinline: Makefile pkgsrc/games/kgoldrunner: Makefile pkgsrc/games/khangman: Makefile pkgsrc/games/kigo: Makefile pkgsrc/games/killbots: Makefile pkgsrc/games/kiriki: Makefile pkgsrc/games/kjumpingcube: Makefile pkgsrc/games/klickety: Makefile pkgsrc/games/klines: Makefile pkgsrc/games/kmahjongg: Makefile pkgsrc/games/kmines: Makefile pkgsrc/games/knavalbattle: Makefile pkgsrc/games/knetwalk: Makefile pkgsrc/games/kolf: Makefile pkgsrc/games/kollision: Makefile pkgsrc/games/konquest: Makefile pkgsrc/games/kpat: Makefile pkgsrc/games/kreversi: Makefile pkgsrc/games/kshisen: Makefile pkgsrc/games/ksirk: Makefile pkgsrc/games/ksnakeduel: Makefile pkgsrc/games/kspaceduel: Makefile pkgsrc/games/ksquares: Makefile pkgsrc/games/ksudoku: Makefile pkgsrc/games/ktuberling: Makefile pkgsrc/games/kubrick: Makefile pkgsrc/games/kye: Makefile pkgsrc/games/libkdegames: Makefile buildlink3.mk pkgsrc/games/libkmahjongg: Makefile buildlink3.mk pkgsrc/games/liblcf: Makefile buildlink3.mk pkgsrc/games/lincity-ng: Makefile pkgsrc/games/lskat: Makefile pkgsrc/games/manaplus: Makefile pkgsrc/games/megaglest: Makefile pkgsrc/games/minetest: Makefile pkgsrc/games/naev: Makefile pkgsrc/games/openmw: Makefile pkgsrc/games/openrct2: Makefile pkgsrc/games/openttd: Makefile pkgsrc/games/palapeli: Makefile pkgsrc/games/picmi: Makefile pkgsrc/games/pioneers: Makefile pkgsrc/games/q5go: Makefile pkgsrc/games/quarry: Makefile pkgsrc/games/simgear: Makefile buildlink3.mk pkgsrc/games/solarus: Makefile pkgsrc/games/stone-soup: Makefile pkgsrc/games/stone-soup-sdl: Makefile pkgsrc/games/teg: Makefile pkgsrc/games/warmux: Makefile pkgsrc/games/warzone2100: Makefile pkgsrc/games/widelands: Makefile pkgsrc/games/xboard: Makefile pkgsrc/games/xu4: Makefile pkgsrc/geography/R-lwgeom: Makefile pkgsrc/geography/R-rgdal: Makefile pkgsrc/geography/R-sf: Makefile pkgsrc/geography/gama: Makefile pkgsrc/geography/gdal-lib: Makefile buildlink3.mk pkgsrc/geography/geoclue: Makefile pkgsrc/geography/geocode-glib: Makefile pkgsrc/geography/gpsbabel: Makefile pkgsrc/geography/gpxsee: Makefile pkgsrc/geography/libchamplain012: Makefile buildlink3.mk pkgsrc/geography/libgeotiff: Makefile buildlink3.mk pkgsrc/geography/libspatialite: Makefile buildlink3.mk pkgsrc/geography/mapserver: Makefile pkgsrc/geography/merkaartor: Makefile pkgsrc/geography/osm-gps-map: Makefile pkgsrc/geography/osm2pgsql: Makefile pkgsrc/geography/proj: Makefile buildlink3.mk pkgsrc/geography/py-gdal: Makefile pkgsrc/geography/py-proj: Makefile pkgsrc/geography/qgis: Makefile pkgsrc/geography/qlandkartegt: Makefile pkgsrc/geography/qlandkartem: Makefile pkgsrc/geography/viking: Makefile pkgsrc/graphics/Cenon: Makefile pkgsrc/graphics/GraphicsMagick: Makefile pkgsrc/graphics/ImageMagick: Makefile buildlink3.mk pkgsrc/graphics/ImageMagick6: Makefile buildlink3.mk pkgsrc/graphics/ImageViewer: Makefile pkgsrc/graphics/autopano-sift-C: Makefile pkgsrc/graphics/autotrace: Makefile pkgsrc/graphics/breeze-icons: Makefile pkgsrc/graphics/camlimages: Makefile pkgsrc/graphics/colord: Makefile pkgsrc/graphics/comix: Makefile pkgsrc/graphics/darktable: Makefile pkgsrc/graphics/denemo: Makefile pkgsrc/graphics/dia: Makefile pkgsrc/graphics/dia-python: Makefile pkgsrc/graphics/digikam: Makefile pkgsrc/graphics/djview4: Makefile pkgsrc/graphics/dx: Makefile pkgsrc/graphics/eog: Makefile pkgsrc/graphics/eom: Makefile pkgsrc/graphics/frameworks: Makefile pkgsrc/graphics/geeqie: Makefile pkgsrc/graphics/gegl: Makefile pkgsrc/graphics/gimp: Makefile buildlink3.mk pkgsrc/graphics/gimp-color-manager: Makefile pkgsrc/graphics/gimp-exif-browser: Makefile pkgsrc/graphics/gimp-fix-ca: Makefile pkgsrc/graphics/gimp-jxr: Makefile pkgsrc/graphics/gimp-liquid-rescale: Makefile pkgsrc/graphics/gimp-rawphoto: Makefile pkgsrc/graphics/gimp-refocus-it: Makefile pkgsrc/graphics/gimp-resynthesizer: Makefile pkgsrc/graphics/gimp-ufraw: Makefile pkgsrc/graphics/gimp2-wideangle: Makefile pkgsrc/graphics/gmic: Makefile pkgsrc/graphics/gnome-icon-theme-symbolic: Makefile pkgsrc/graphics/gnome-themes-standard: Makefile pkgsrc/graphics/gnuplot: Makefile pkgsrc/graphics/gphoto2: Makefile pkgsrc/graphics/graphviz: Makefile pkgsrc/graphics/gst-plugins0.10-cairo: Makefile pkgsrc/graphics/gst-plugins0.10-jpeg: Makefile pkgsrc/graphics/gst-plugins0.10-png: Makefile pkgsrc/graphics/gthumb: Makefile pkgsrc/graphics/gthumb3: Makefile pkgsrc/graphics/gtkam: Makefile pkgsrc/graphics/gwenview: Makefile pkgsrc/graphics/hugin: Makefile pkgsrc/graphics/imv: Makefile pkgsrc/graphics/inkscape: Makefile pkgsrc/graphics/ipe: Makefile pkgsrc/graphics/kamera: Makefile pkgsrc/graphics/kcolorchooser: Makefile pkgsrc/graphics/kde-base-artwork: Makefile pkgsrc/graphics/kdegraphics-mobipocket: Makefile buildlink3.mk pkgsrc/graphics/kdegraphics-strigi-analyzer: Makefile pkgsrc/graphics/kdegraphics-thumbnailers: Makefile pkgsrc/graphics/kgamma: Makefile pkgsrc/graphics/kiconthemes: Makefile buildlink3.mk pkgsrc/graphics/kimageformats: Makefile pkgsrc/graphics/kipi-plugins: Makefile buildlink3.mk pkgsrc/graphics/kolourpaint: Makefile pkgsrc/graphics/koverartist: Makefile pkgsrc/graphics/kplotting: Makefile buildlink3.mk pkgsrc/graphics/kqtquickcharts: Makefile pkgsrc/graphics/kqtquickcharts4: Makefile pkgsrc/graphics/krita: Makefile pkgsrc/graphics/kruler: Makefile pkgsrc/graphics/kvantum: Makefile pkgsrc/graphics/lasem: Makefile buildlink3.mk pkgsrc/graphics/libgnomecanvas: Makefile buildlink3.mk pkgsrc/graphics/libgnomecanvasmm: Makefile buildlink3.mk pkgsrc/graphics/libkdcraw: Makefile buildlink3.mk pkgsrc/graphics/libkexiv2: Makefile buildlink3.mk pkgsrc/graphics/libkexiv2-kde4: Makefile pkgsrc/graphics/libkipi: Makefile buildlink3.mk pkgsrc/graphics/libksane: Makefile buildlink3.mk pkgsrc/graphics/librsvg: Makefile buildlink3.mk pkgsrc/graphics/librsvg-c: Makefile pkgsrc/graphics/libscigraphica: Makefile buildlink3.mk pkgsrc/graphics/libwmf: Makefile buildlink3.mk pkgsrc/graphics/luminance-hdr: Makefile pkgsrc/graphics/lximage-qt: Makefile pkgsrc/graphics/netpbm: Makefile pkgsrc/graphics/ocaml-cairo: Makefile pkgsrc/graphics/osg: Makefile buildlink3.mk pkgsrc/graphics/p5-Gnome2-Canvas: Makefile buildlink3.mk pkgsrc/graphics/p5-PerlMagick: Makefile pkgsrc/graphics/pfstools: Makefile pkgsrc/graphics/php-imagick: Makefile pkgsrc/graphics/prison: Makefile buildlink3.mk pkgsrc/graphics/py-gtkglext: Makefile pkgsrc/graphics/rawtherapee: Makefile pkgsrc/graphics/ruby-RMagick: Makefile pkgsrc/graphics/ruby-rsvg2: Makefile pkgsrc/graphics/sane-airscan: Makefile pkgsrc/graphics/sane-frontends: Makefile pkgsrc/graphics/scigraphica: Makefile pkgsrc/graphics/screengrab: Makefile pkgsrc/graphics/shotwell: Makefile pkgsrc/graphics/spectacle: Makefile pkgsrc/graphics/svgpart: Makefile pkgsrc/graphics/tango-icon-theme: Makefile pkgsrc/graphics/tesseract: Makefile pkgsrc/graphics/tuxpaint: Makefile pkgsrc/graphics/ucview: Makefile pkgsrc/graphics/veusz: Makefile pkgsrc/graphics/x11rec: Makefile pkgsrc/graphics/xsane: Makefile pkgsrc/graphics/zbar: Makefile pkgsrc/graphics/zphoto: Makefile pkgsrc/ham/gmfsk: Makefile pkgsrc/ham/gnuradio-channels: Makefile pkgsrc/ham/gnuradio-companion: Makefile pkgsrc/ham/gnuradio-core: Makefile pkgsrc/ham/gnuradio-ctrlport: Makefile pkgsrc/ham/gnuradio-digital: Makefile pkgsrc/ham/gnuradio-doxygen: Makefile pkgsrc/ham/gnuradio-dtv: Makefile pkgsrc/ham/gnuradio-fec: Makefile pkgsrc/ham/gnuradio-network: Makefile pkgsrc/ham/gnuradio-qtgui: Makefile pkgsrc/ham/gnuradio-trellis: Makefile pkgsrc/ham/gnuradio-uhd: Makefile pkgsrc/ham/gnuradio-utils: Makefile pkgsrc/ham/gnuradio-video-sdl: Makefile pkgsrc/ham/gnuradio-vocoder: Makefile pkgsrc/ham/gnuradio-wavelet: Makefile pkgsrc/ham/gnuradio-zeromq: Makefile pkgsrc/inputmethod/fcitx: Makefile pkgsrc/inputmethod/fcitx-qt5: Makefile pkgsrc/inputmethod/fcitx-skk: Makefile pkgsrc/inputmethod/fcitx5-chewing: Makefile pkgsrc/inputmethod/fcitx5-chinese-addons: Makefile pkgsrc/inputmethod/fcitx5-configtool: Makefile pkgsrc/inputmethod/fcitx5-kkc: Makefile pkgsrc/inputmethod/fcitx5-m17n: Makefile pkgsrc/inputmethod/fcitx5-mozc: Makefile Makefile.common pkgsrc/inputmethod/fcitx5-qt: Makefile buildlink3.mk pkgsrc/inputmethod/fcitx5-skk: Makefile pkgsrc/inputmethod/fcitx5-unikey: Makefile pkgsrc/inputmethod/ibus-array: Makefile pkgsrc/inputmethod/ibus-chewing: Makefile pkgsrc/inputmethod/ibus-input-pad: Makefile pkgsrc/inputmethod/ibus-libpinyin: Makefile pkgsrc/inputmethod/ibus-m17n: Makefile pkgsrc/inputmethod/ibus-mozc: Makefile pkgsrc/inputmethod/ibus-pinyin: Makefile pkgsrc/inputmethod/ibus-qt: Makefile pkgsrc/inputmethod/im-ja: Makefile pkgsrc/inputmethod/input-pad: Makefile buildlink3.mk pkgsrc/inputmethod/kimera-tomoe-gtk: Makefile pkgsrc/inputmethod/libchewing: Makefile buildlink3.mk pkgsrc/inputmethod/m17n-im-config: Makefile buildlink3.mk pkgsrc/inputmethod/mozc-elisp: Makefile pkgsrc/inputmethod/mozc-renderer: Makefile pkgsrc/inputmethod/mozc-server: Makefile pkgsrc/inputmethod/mozc-tool: Makefile pkgsrc/inputmethod/py-input-pad: Makefile pkgsrc/inputmethod/scim-chewing: Makefile pkgsrc/inputmethod/scim-m17n: Makefile pkgsrc/inputmethod/scim-tomoe: Makefile pkgsrc/inputmethod/tomoe-gtk: Makefile buildlink3.mk pkgsrc/inputmethod/uim: Makefile pkgsrc/inputmethod/uim-chewing: Makefile pkgsrc/inputmethod/uim-mozc: Makefile pkgsrc/inputmethod/uim-tomoe-gtk: Makefile pkgsrc/lang/coq: Makefile pkgsrc/lang/coreclr: Makefile buildlink3.mk pkgsrc/lang/gjs: Makefile buildlink3.mk pkgsrc/lang/konoha: Makefile pkgsrc/lang/mono: Makefile buildlink3.mk pkgsrc/lang/mono-basic: Makefile pkgsrc/lang/mozjs78: Makefile buildlink3.mk pkgsrc/lang/neko: Makefile pkgsrc/lang/nodejs: Makefile buildlink3.mk pkgsrc/lang/nodejs10: Makefile buildlink3.mk pkgsrc/lang/nodejs12: Makefile buildlink3.mk pkgsrc/lang/parrot: Makefile buildlink3.mk pkgsrc/lang/php56: Makefile buildlink3.mk pkgsrc/lang/php73: Makefile buildlink3.mk pkgsrc/lang/php74: Makefile buildlink3.mk pkgsrc/lang/php80: Makefile buildlink3.mk pkgsrc/lang/racket: Makefile pkgsrc/lang/smalltalk: Makefile pkgsrc/lang/spl: Makefile pkgsrc/lang/tcl: Makefile pkgsrc/lang/zig: Makefile pkgsrc/mail/GNUMail: Makefile pkgsrc/mail/Pantomime: Makefile buildlink3.mk pkgsrc/mail/akonadi: Makefile pkgsrc/mail/balsa: Makefile pkgsrc/mail/bogofilter: Makefile pkgsrc/mail/claws-mail-rssyl: Makefile pkgsrc/mail/claws-mail-vcalendar: Makefile pkgsrc/mail/cone: Makefile pkgsrc/mail/cyrus-imapd24: Makefile pkgsrc/mail/dbmail: Makefile pkgsrc/mail/dovecot2-sqlite: Makefile pkgsrc/mail/dspam: Makefile pkgsrc/mail/evolution: Makefile buildlink3.mk pkgsrc/mail/evolution-data-server: Makefile buildlink3.mk pkgsrc/mail/exim: Makefile pkgsrc/mail/ezmlm-idx: Makefile pkgsrc/mail/greylisting-spp: Makefile pkgsrc/mail/kimap: Makefile buildlink3.mk pkgsrc/mail/kmbox: Makefile buildlink3.mk pkgsrc/mail/kmime: Makefile buildlink3.mk pkgsrc/mail/ksmtp: Makefile buildlink3.mk pkgsrc/mail/mail-notification: Makefile pkgsrc/mail/pfqueue: Makefile pkgsrc/mail/postfix: Makefile pkgsrc/mail/postfix-sqlite: Makefile pkgsrc/mail/pst-utils: Makefile pkgsrc/mail/rspamd: Makefile pkgsrc/math/R-XML: Makefile pkgsrc/math/R-igraph: Makefile pkgsrc/math/analitza: Makefile buildlink3.mk pkgsrc/math/cantor: Makefile pkgsrc/math/cgal: Makefile pkgsrc/math/gcalctool: Makefile pkgsrc/math/genius: Makefile pkgsrc/math/gnome-calculator: Makefile pkgsrc/math/gnumeric112: Makefile pkgsrc/math/kalgebra: Makefile pkgsrc/math/kcalc: Makefile pkgsrc/math/lumina-calculator: Makefile pkgsrc/math/octave: Makefile pkgsrc/math/pspp: Makefile pkgsrc/math/qalculate: Makefile buildlink3.mk pkgsrc/math/qalculate-gtk: Makefile pkgsrc/math/sc-im: Makefile pkgsrc/math/sollya: Makefile pkgsrc/math/speedcrunch: Makefile pkgsrc/math/wxmaxima: Makefile pkgsrc/math/xyconvert: Makefile pkgsrc/meta-pkgs/gnustep: Makefile pkgsrc/meta-pkgs/libdbusmenu: Makefile buildlink3.mk pkgsrc/misc/Addresses: Makefile buildlink3.mk pkgsrc/misc/attica-qt5: Makefile buildlink3.mk pkgsrc/misc/bibletime: Makefile pkgsrc/misc/calibre: Makefile pkgsrc/misc/celestia: Makefile pkgsrc/misc/fbreader: Makefile pkgsrc/misc/goffice0.10: Makefile buildlink3.mk pkgsrc/misc/goffice0.8: Makefile buildlink3.mk pkgsrc/misc/kaccessible: Makefile pkgsrc/misc/kalzium: Makefile pkgsrc/misc/kbruch: Makefile pkgsrc/misc/kcharselect: Makefile pkgsrc/misc/kchmviewer: Makefile pkgsrc/misc/kcontacts: Makefile buildlink3.mk pkgsrc/misc/kdav: Makefile buildlink3.mk pkgsrc/misc/kde-wallpapers4: Makefile pkgsrc/misc/kdeartwork4: Makefile pkgsrc/misc/kdeedu-data: Makefile pkgsrc/misc/kdepim-runtime4: Makefile pkgsrc/misc/kdepim4: Makefile pkgsrc/misc/kdepimlibs4: Makefile buildlink3.mk pkgsrc/misc/kdeplasma-addons4: Makefile pkgsrc/misc/kemoticons: Makefile buildlink3.mk pkgsrc/misc/kgeography: Makefile pkgsrc/misc/khelpcenter: Makefile pkgsrc/misc/kidentitymanagement: Makefile buildlink3.mk pkgsrc/misc/kig: Makefile pkgsrc/misc/kiten: Makefile pkgsrc/misc/klettres: Makefile pkgsrc/misc/kmag: Makefile pkgsrc/misc/kmousetool: Makefile pkgsrc/misc/kmouth: Makefile pkgsrc/misc/kremotecontrol: Makefile pkgsrc/misc/kstars: Makefile pkgsrc/misc/kteatime: Makefile pkgsrc/misc/ktouch: Makefile pkgsrc/misc/kturtle: Makefile pkgsrc/misc/ktux: Makefile pkgsrc/misc/kunitconversion: Makefile buildlink3.mk pkgsrc/misc/kwordquiz: Makefile pkgsrc/misc/libkdeedu: Makefile buildlink3.mk pkgsrc/misc/libkeduvocdocument: Makefile buildlink3.mk pkgsrc/misc/libkvkontakte: Makefile buildlink3.mk pkgsrc/misc/libmateweather: Makefile buildlink3.mk pkgsrc/misc/libreoffice: Makefile pkgsrc/misc/marble: Makefile buildlink3.mk pkgsrc/misc/mate-calc: Makefile pkgsrc/misc/parley: Makefile pkgsrc/misc/rocs: Makefile pkgsrc/misc/stellarium: Makefile pkgsrc/misc/step: Makefile pkgsrc/misc/superkaramba: Makefile pkgsrc/misc/sweeper: Makefile pkgsrc/misc/sword: Makefile buildlink3.mk pkgsrc/misc/usbprog: Makefile pkgsrc/misc/vym: Makefile pkgsrc/misc/xfce4-weather-plugin: Makefile pkgsrc/misc/xygrib: Makefile pkgsrc/misc/yelp3: Makefile pkgsrc/misc/zyGrib: Makefile pkgsrc/multimedia/audiocd-kio: Makefile pkgsrc/multimedia/avidemux: Makefile pkgsrc/multimedia/dragon: Makefile pkgsrc/multimedia/dvdauthor: Makefile pkgsrc/multimedia/ffmpeg2: Makefile pkgsrc/multimedia/ffmpeg3: Makefile pkgsrc/multimedia/ffmpeg4: Makefile pkgsrc/multimedia/ffmpegthumbs: Makefile pkgsrc/multimedia/ffplay2: Makefile pkgsrc/multimedia/ffplay3: Makefile pkgsrc/multimedia/ffplay4: Makefile pkgsrc/multimedia/gmencoder: Makefile pkgsrc/multimedia/gnome-mplayer: Makefile pkgsrc/multimedia/goggles: Makefile pkgsrc/multimedia/gopchop: Makefile pkgsrc/multimedia/gst-plugins0.10-bad: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-base: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-dvdread: Makefile pkgsrc/multimedia/gst-plugins0.10-ffmpeg: Makefile pkgsrc/multimedia/gst-plugins0.10-gnonlin: Makefile pkgsrc/multimedia/gst-plugins0.10-good: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-hal: Makefile pkgsrc/multimedia/gst-plugins0.10-mpeg2dec: Makefile pkgsrc/multimedia/gst-plugins0.10-resindvd: Makefile pkgsrc/multimedia/gst-plugins0.10-ugly: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-v4l2: Makefile pkgsrc/multimedia/gst-plugins0.10-vp8: Makefile pkgsrc/multimedia/gst-plugins0.10-x264: Makefile pkgsrc/multimedia/gst-plugins0.10-xvid: Makefile pkgsrc/multimedia/gst-plugins1-base: Makefile pkgsrc/multimedia/gst-plugins1-editing-services: Makefile pkgsrc/multimedia/gstreamer0.10: Makefile buildlink3.mk pkgsrc/multimedia/handbrake: Makefile pkgsrc/multimedia/juk: Makefile pkgsrc/multimedia/kdenlive: Makefile pkgsrc/multimedia/kmix: Makefile pkgsrc/multimedia/kmplayer: Makefile pkgsrc/multimedia/kscd: Makefile pkgsrc/multimedia/libassetml: Makefile buildlink3.mk pkgsrc/multimedia/libbluray: Makefile buildlink3.mk pkgsrc/multimedia/libkcddb: Makefile buildlink3.mk pkgsrc/multimedia/libkcompactdisc: Makefile buildlink3.mk pkgsrc/multimedia/mate-media: Makefile pkgsrc/multimedia/mediatomb: Makefile pkgsrc/multimedia/minidlna: Makefile pkgsrc/multimedia/mkvtoolnix: Makefile pkgsrc/multimedia/mlt: Makefile pkgsrc/multimedia/mplayerthumbs: Makefile pkgsrc/multimedia/mpv: Makefile pkgsrc/multimedia/obs-studio: Makefile pkgsrc/multimedia/ogle: Makefile buildlink3.mk pkgsrc/multimedia/ogle_gui: Makefile pkgsrc/multimedia/olive-editor: Makefile pkgsrc/multimedia/p5-GStreamer: Makefile pkgsrc/multimedia/phonon-qt5: Makefile buildlink3.mk pkgsrc/multimedia/phonon-qt5-backend-gstreamer: Makefile pkgsrc/multimedia/phonon-qt5-backend-vlc: Makefile pkgsrc/multimedia/py-gstreamer0.10: Makefile pkgsrc/multimedia/ssr: Makefile pkgsrc/multimedia/subtitleeditor: Makefile pkgsrc/multimedia/totem: Makefile buildlink3.mk pkgsrc/multimedia/totem-pl-parser: Makefile buildlink3.mk pkgsrc/multimedia/transcode: Makefile pkgsrc/multimedia/vlc: Makefile pkgsrc/multimedia/xine-lib: Makefile pkgsrc/net/aria2: Makefile pkgsrc/net/bind911: Makefile pkgsrc/net/bind916: Makefile pkgsrc/net/cacti: Makefile pkgsrc/net/choqok: Makefile pkgsrc/net/corebird: Makefile pkgsrc/net/dc_gui2: Makefile pkgsrc/net/dctc: Makefile pkgsrc/net/dhcpcd-qt: Makefile pkgsrc/net/filezilla: Makefile pkgsrc/net/flickcurl: Makefile pkgsrc/net/freeDiameter: Makefile pkgsrc/net/freeradius-sqlite3: Makefile pkgsrc/net/gift-gnutella: Makefile pkgsrc/net/gnome-online-accounts: Makefile pkgsrc/net/gnome-vfs-smb: Makefile pkgsrc/net/grilo: Makefile buildlink3.mk pkgsrc/net/grilo-plugins: Makefile pkgsrc/net/gssdp: Makefile buildlink3.mk pkgsrc/net/gssdp12: Makefile buildlink3.mk pkgsrc/net/gst-plugins0.10-mms: Makefile pkgsrc/net/gst-plugins0.10-rtmp: Makefile pkgsrc/net/gst-plugins0.10-soup: Makefile pkgsrc/net/gst-plugins1-libnice: Makefile pkgsrc/net/gst-plugins1-soup: Makefile pkgsrc/net/gtk-gnutella: Makefile pkgsrc/net/gtk-vnc: Makefile pkgsrc/net/gupnp: Makefile buildlink3.mk pkgsrc/net/gupnp-av: Makefile buildlink3.mk pkgsrc/net/gupnp-dlna: Makefile buildlink3.mk pkgsrc/net/gupnp-igd: Makefile buildlink3.mk pkgsrc/net/gupnp-tools: Makefile pkgsrc/net/gupnp12: Makefile buildlink3.mk pkgsrc/net/kdenetwork-filesharing: Makefile pkgsrc/net/kdenetwork-strigi-analyzers: Makefile pkgsrc/net/kdnssd: Makefile buildlink3.mk pkgsrc/net/kdsoap: Makefile buildlink3.mk pkgsrc/net/kget: Makefile pkgsrc/net/kmldonkey: Makefile pkgsrc/net/knewstuff: Makefile buildlink3.mk pkgsrc/net/kopete: Makefile pkgsrc/net/kppp: Makefile pkgsrc/net/krdc: Makefile pkgsrc/net/krfb: Makefile pkgsrc/net/ktorrent: Makefile pkgsrc/net/kxmlrpcclient: Makefile buildlink3.mk pkgsrc/net/libcmis: Makefile pkgsrc/net/libdmapsharing3: Makefile buildlink3.mk pkgsrc/net/libgdata: Makefile buildlink3.mk pkgsrc/net/libgdata0.6: Makefile buildlink3.mk pkgsrc/net/libktorrent: Makefile buildlink3.mk pkgsrc/net/libnice: Makefile buildlink3.mk pkgsrc/net/libsoup: Makefile buildlink3.mk pkgsrc/net/libzrtpcpp: Makefile buildlink3.mk pkgsrc/net/lldpd: Makefile pkgsrc/net/microdc2: Makefile pkgsrc/net/minitube: Makefile pkgsrc/net/mldonkey-gui: Makefile pkgsrc/net/mono-nat: Makefile buildlink3.mk pkgsrc/net/monotorrent: Makefile buildlink3.mk pkgsrc/net/nagstamon: Makefile pkgsrc/net/ncdc: Makefile pkgsrc/net/ncgopher: Makefile pkgsrc/net/nfdump: Makefile pkgsrc/net/ntop: Makefile pkgsrc/net/ntopng: Makefile pkgsrc/net/ocamlnet: Makefile pkgsrc/net/ocsync: Makefile buildlink3.mk pkgsrc/net/openconnect: Makefile pkgsrc/net/owncloudclient: Makefile pkgsrc/net/p5-Net-Z3950-ZOOM: Makefile pkgsrc/net/php-soap: Makefile pkgsrc/net/php-xmlrpc: Makefile pkgsrc/net/php-yaz: Makefile pkgsrc/net/powerdns: Makefile pkgsrc/net/proftpd-sqlite: Makefile pkgsrc/net/qbittorrent: Makefile pkgsrc/net/remmina: Makefile pkgsrc/net/scli: Makefile pkgsrc/net/syncthing-gtk: Makefile pkgsrc/net/tcpflow: Makefile pkgsrc/net/transmission-qt: Makefile pkgsrc/net/unison-snapshot: Makefile pkgsrc/net/unison2.51: Makefile pkgsrc/net/vinagre: Makefile pkgsrc/net/vino: Makefile pkgsrc/net/wireshark: Makefile pkgsrc/net/wpa_gui: Makefile pkgsrc/net/xymon: Makefile pkgsrc/net/yaz: Makefile buildlink3.mk pkgsrc/net/zeroconf-ioslave: Makefile pkgsrc/news/bystand: Makefile pkgsrc/news/newsbeuter: Makefile pkgsrc/news/tin: Makefile pkgsrc/parallel/ganglia-monitor-core: Makefile pkgsrc/parallel/gridscheduler: Makefile pkgsrc/parallel/hwloc: Makefile buildlink3.mk pkgsrc/parallel/mpi-ch: Makefile pkgsrc/parallel/openmpi: Makefile buildlink3.mk pkgsrc/parallel/slurm-wlm: Makefile pkgsrc/pkgtools/gnome-packagekit: Makefile pkgsrc/pkgtools/packagekit: Makefile buildlink3.mk pkgsrc/pkgtools/pkgin: Makefile pkgsrc/print/advi: Makefile pkgsrc/print/atril: Makefile pkgsrc/print/dspdfviewer: Makefile pkgsrc/print/evince3: Makefile pkgsrc/print/foliate: Makefile pkgsrc/print/foomatic4-db-engine: Makefile pkgsrc/print/glabels: Makefile pkgsrc/print/gutenprint-lib: Makefile pkgsrc/print/lumina-pdf: Makefile pkgsrc/print/okular: Makefile pkgsrc/print/poppler-qt5: Makefile pkgsrc/print/qpdfview: Makefile pkgsrc/print/scribus-qt4: Makefile pkgsrc/print/scribus-qt5: Makefile pkgsrc/print/sile: Makefile pkgsrc/print/xetex: Makefile pkgsrc/print/xpdf4: Makefile pkgsrc/print/zathura: Makefile pkgsrc/security/KeePass: Makefile pkgsrc/security/ap-modsecurity2: Makefile pkgsrc/security/clamav: Makefile buildlink3.mk pkgsrc/security/cy2-saml: Makefile pkgsrc/security/cy2-sql: Makefile pkgsrc/security/ecap_clamav_adapter: Makefile pkgsrc/security/fwbuilder: Makefile pkgsrc/security/gnupg2: Makefile pkgsrc/security/gpgmepp: Makefile buildlink3.mk pkgsrc/security/heimdal: Makefile buildlink3.mk pkgsrc/security/honeyd: Makefile pkgsrc/security/hydra: Makefile pkgsrc/security/kauth: Makefile buildlink3.mk pkgsrc/security/kdesu: Makefile buildlink3.mk pkgsrc/security/keepassxc: Makefile pkgsrc/security/kgpg: Makefile pkgsrc/security/kwallet: Makefile buildlink3.mk pkgsrc/security/kwalletmanager: Makefile pkgsrc/security/lasso: Makefile buildlink3.mk pkgsrc/security/lastpass-cli: Makefile pkgsrc/security/libfprint: Makefile pkgsrc/security/libfwbuilder: Makefile buildlink3.mk pkgsrc/security/libpreludedb-sqlite3: Makefile pkgsrc/security/lxqt-openssh-askpass: Makefile pkgsrc/security/lxqt-policykit: Makefile pkgsrc/security/lxqt-sudo: Makefile pkgsrc/security/oath-toolkit: Makefile pkgsrc/security/opendnssec: Makefile pkgsrc/security/opendnssec2: Makefile pkgsrc/security/opensc: Makefile pkgsrc/security/pam-saml: Makefile pkgsrc/security/pinentry-qt5: Makefile pkgsrc/security/policykit: Makefile pkgsrc/security/polkit: Makefile pkgsrc/security/polkit-qt5: Makefile buildlink3.mk pkgsrc/security/prelude-manager: Makefile pkgsrc/security/py-lasso: Makefile pkgsrc/security/py-xmlsec: Makefile pkgsrc/security/qca2-qt5: Makefile buildlink3.mk pkgsrc/security/qca2-qt5-gnupg: Makefile pkgsrc/security/qca2-qt5-ossl: Makefile pkgsrc/security/qgpgme: Makefile buildlink3.mk pkgsrc/security/qore-xmlsec-module: Makefile pkgsrc/security/qt5-qtkeychain: Makefile pkgsrc/security/seahorse: Makefile pkgsrc/security/softhsm: Makefile buildlink3.mk pkgsrc/security/softhsm2: Makefile buildlink3.mk pkgsrc/security/tor-browser: Makefile pkgsrc/security/xca: Makefile pkgsrc/security/xmlsec1: Makefile buildlink3.mk pkgsrc/sysutils/augeas: Makefile buildlink3.mk pkgsrc/sysutils/bacula: Makefile pkgsrc/sysutils/bacula-qt5-console: Makefile pkgsrc/sysutils/bacula-tray-monitor-qt5: Makefile pkgsrc/sysutils/baloo: Makefile pkgsrc/sysutils/baloo-widgets: Makefile buildlink3.mk pkgsrc/sysutils/baloo5: Makefile buildlink3.mk pkgsrc/sysutils/bareos: Makefile pkgsrc/sysutils/brasero: Makefile pkgsrc/sysutils/burn: Makefile pkgsrc/sysutils/caja: Makefile pkgsrc/sysutils/caja-extensions: Makefile pkgsrc/sysutils/cfengine3: Makefile pkgsrc/sysutils/collectd-curl: Makefile pkgsrc/sysutils/collectd-mongodb: Makefile pkgsrc/sysutils/collectd-rrdtool: Makefile pkgsrc/sysutils/collectd-virt: Makefile pkgsrc/sysutils/conky: Makefile pkgsrc/sysutils/dbus-sharp: Makefile buildlink3.mk pkgsrc/sysutils/dbus-sharp-glib: Makefile buildlink3.mk pkgsrc/sysutils/dolphin: Makefile buildlink3.mk pkgsrc/sysutils/facette: Makefile pkgsrc/sysutils/filelight: Makefile pkgsrc/sysutils/gcdmaster: Makefile pkgsrc/sysutils/gdmap: Makefile pkgsrc/sysutils/gfm: Makefile pkgsrc/sysutils/gnome-characters: Makefile pkgsrc/sysutils/gnome-control-center: Makefile pkgsrc/sysutils/gnome-nds-thumbnailer: Makefile pkgsrc/sysutils/gnome-settings-daemon: Makefile pkgsrc/sysutils/gnome-tracker: Makefile buildlink3.mk pkgsrc/sysutils/gnome-tracker-miners: Makefile pkgsrc/sysutils/gnome-vfs: Makefile buildlink3.mk pkgsrc/sysutils/gnome-vfsmm: Makefile buildlink3.mk pkgsrc/sysutils/gst-plugins0.10-gnomevfs: Makefile pkgsrc/sysutils/gvfs: Makefile pkgsrc/sysutils/gworkspace: Makefile pkgsrc/sysutils/hivex: Makefile pkgsrc/sysutils/k3b: Makefile pkgsrc/sysutils/kcron: Makefile pkgsrc/sysutils/kdbusaddons: Makefile buildlink3.mk pkgsrc/sysutils/kdf: Makefile pkgsrc/sysutils/kfilemetadata: Makefile pkgsrc/sysutils/kfilemetadata5: Makefile pkgsrc/sysutils/kfloppy: Makefile pkgsrc/sysutils/krusader: Makefile pkgsrc/sysutils/ksystemlog: Makefile pkgsrc/sysutils/kuser: Makefile pkgsrc/sysutils/libbaloo4: Makefile pkgsrc/sysutils/libdevkit-gobject: Makefile pkgsrc/sysutils/lnav: Makefile pkgsrc/sysutils/lxqt-powermanagement: Makefile pkgsrc/sysutils/mate-system-monitor: Makefile pkgsrc/sysutils/nautilus: Makefile pkgsrc/sysutils/ndesk-dbus: Makefile pkgsrc/sysutils/ndesk-dbus-glib: Makefile buildlink3.mk pkgsrc/sysutils/open-vm-tools: Makefile pkgsrc/sysutils/openxenmanager: Makefile pkgsrc/sysutils/p5-Config-Augeas: Makefile pkgsrc/sysutils/p5-Gnome2-VFS: Makefile buildlink3.mk pkgsrc/sysutils/pcmanfm-qt: Makefile pkgsrc/sysutils/py-augeas: Makefile pkgsrc/sysutils/py-notify-python: Makefile buildlink3.mk pkgsrc/sysutils/qdirstat: Makefile pkgsrc/sysutils/rox: Makefile pkgsrc/sysutils/screentest: Makefile pkgsrc/sysutils/solid: Makefile buildlink3.mk pkgsrc/sysutils/strigi: Makefile buildlink3.mk pkgsrc/sysutils/syslog-ng-mongodb: Makefile pkgsrc/sysutils/tarsnap-gui: Makefile pkgsrc/sysutils/vcdimager: Makefile buildlink3.mk pkgsrc/sysutils/virt-manager: Makefile pkgsrc/sysutils/virt-viewer: Makefile pkgsrc/sysutils/xfce4-gvfs-mount-plugin: Makefile pkgsrc/sysutils/xfce4-quicklauncher-plugin: Makefile pkgsrc/sysutils/xfce4-thunar-vcs: Makefile pkgsrc/sysutils/xfce4-xkb-plugin: Makefile pkgsrc/sysutils/zabbix: Makefile pkgsrc/sysutils/zabbix50-agent: Makefile pkgsrc/sysutils/zabbix50-proxy: Makefile pkgsrc/sysutils/zabbix50-server: Makefile pkgsrc/textproc/OdfConverter: Makefile pkgsrc/textproc/R-stringi: Makefile pkgsrc/textproc/R-xml2: Makefile pkgsrc/textproc/asciidoc: Makefile pkgsrc/textproc/bat: Makefile pkgsrc/textproc/csharp-xapian: Makefile pkgsrc/textproc/dikt: Makefile pkgsrc/textproc/dwdiff: Makefile pkgsrc/textproc/ebook-tools: Makefile buildlink3.mk pkgsrc/textproc/gdome2: Makefile buildlink3.mk pkgsrc/textproc/gnome-doc-utils: Makefile pkgsrc/textproc/gtk-doc: Makefile pkgsrc/textproc/hfstospell: Makefile buildlink3.mk pkgsrc/textproc/highlight: Makefile pkgsrc/textproc/icu: buildlink3.mk pkgsrc/textproc/kcodecs: Makefile buildlink3.mk pkgsrc/textproc/kcompletion: Makefile buildlink3.mk pkgsrc/textproc/kpimtextedit: Makefile buildlink3.mk pkgsrc/textproc/libcroco: Makefile buildlink3.mk pkgsrc/textproc/liblrdf: Makefile buildlink3.mk pkgsrc/textproc/libplist: Makefile buildlink3.mk pkgsrc/textproc/libxml++: Makefile buildlink3.mk pkgsrc/textproc/libxml2: Makefile buildlink3.mk pkgsrc/textproc/libxslt: Makefile buildlink3.mk pkgsrc/textproc/ots: Makefile pkgsrc/textproc/p5-Alien-Libxml2: Makefile pkgsrc/textproc/p5-XML-LibXML: Makefile pkgsrc/textproc/p5-XML-LibXSLT: Makefile pkgsrc/textproc/php-intl: Makefile pkgsrc/textproc/php-wddx: Makefile pkgsrc/textproc/php-xsl: Makefile pkgsrc/textproc/po4a: Makefile pkgsrc/textproc/py-ICU: Makefile pkgsrc/textproc/py-html5-parser: Makefile pkgsrc/textproc/py-libxml2: Makefile pkgsrc/textproc/py-libxslt: Makefile pkgsrc/textproc/py-lxml: Makefile pkgsrc/textproc/qore-xml-module: Makefile pkgsrc/textproc/raptor: Makefile buildlink3.mk pkgsrc/textproc/raptor2: Makefile buildlink3.mk pkgsrc/textproc/rarian: Makefile pkgsrc/textproc/rasqal: Makefile buildlink3.mk pkgsrc/textproc/redland: Makefile buildlink3.mk pkgsrc/textproc/ruby-libxml: Makefile pkgsrc/textproc/ruby-nokogiri: Makefile pkgsrc/textproc/ruby-xslt: Makefile pkgsrc/textproc/sonnet: Makefile buildlink3.mk pkgsrc/textproc/soprano: Makefile pkgsrc/textproc/split-thai: Makefile pkgsrc/textproc/sublib: Makefile buildlink3.mk pkgsrc/textproc/syntax-highlighting: Makefile buildlink3.mk pkgsrc/textproc/upmendex: Makefile pkgsrc/textproc/xml2doc: Makefile pkgsrc/textproc/xmlstarlet: Makefile pkgsrc/textproc/xmlto: Makefile pkgsrc/textproc/yelp-tools: Makefile pkgsrc/time/fet: Makefile pkgsrc/time/gchore: Makefile pkgsrc/time/gnome-calendar: Makefile pkgsrc/time/kcalendarcore: Makefile buildlink3.mk pkgsrc/time/kcalutils: Makefile buildlink3.mk pkgsrc/time/kholidays: Makefile buildlink3.mk pkgsrc/time/ktimer: Makefile pkgsrc/time/libical: Makefile buildlink3.mk pkgsrc/time/ntpsec: Makefile pkgsrc/time/rsibreak: Makefile pkgsrc/time/xfce4-orage: Makefile pkgsrc/wm/ccsm: Makefile pkgsrc/wm/compiz: Makefile buildlink3.mk pkgsrc/wm/compiz-fusion-plugins-extra: Makefile pkgsrc/wm/compiz-fusion-plugins-main: Makefile buildlink3.mk pkgsrc/wm/e16menuedit2: Makefile pkgsrc/wm/fvwm: Makefile pkgsrc/wm/fvwm3: Makefile pkgsrc/wm/jwm: Makefile pkgsrc/wm/obconf: Makefile pkgsrc/wm/obconf-qt: Makefile pkgsrc/wm/openbox: Makefile buildlink3.mk pkgsrc/wm/wbar: Makefile pkgsrc/www/SOGo: Makefile pkgsrc/www/SOGo4: Makefile pkgsrc/www/ap-auth-mellon: Makefile pkgsrc/www/ap-authnz-crowd: Makefile pkgsrc/www/ap-mono: Makefile pkgsrc/www/ap-php: Makefile pkgsrc/www/ap2-auth-mellon: Makefile pkgsrc/www/ap2-subversion: Makefile pkgsrc/www/apache24: Makefile pkgsrc/www/badwolf: Makefile pkgsrc/www/bkedit: Makefile pkgsrc/www/bluefish: Makefile pkgsrc/www/c-icap-modules: Makefile pkgsrc/www/cppcms: Makefile pkgsrc/www/deforaos-surfer: Makefile pkgsrc/www/epiphany: Makefile pkgsrc/www/firefox: Makefile pkgsrc/www/firefox52: Makefile pkgsrc/www/firefox68: Makefile pkgsrc/www/firefox78: Makefile pkgsrc/www/gitea: Makefile pkgsrc/www/kannel: Makefile pkgsrc/www/kdewebkit: Makefile buildlink3.mk pkgsrc/www/khtml: Makefile buildlink3.mk pkgsrc/www/kimagemapeditor: Makefile pkgsrc/www/kjs: Makefile buildlink3.mk pkgsrc/www/kjsembed: Makefile buildlink3.mk pkgsrc/www/lariza: Makefile pkgsrc/www/libgtkhtml: Makefile buildlink3.mk pkgsrc/www/libmediawiki: Makefile buildlink3.mk pkgsrc/www/librest07: Makefile buildlink3.mk pkgsrc/www/liferea: Makefile pkgsrc/www/lighttpd: Makefile pkgsrc/www/links-gui: Makefile pkgsrc/www/luakit: Makefile pkgsrc/www/midori: Makefile pkgsrc/www/mono-xsp: Makefile buildlink3.mk pkgsrc/www/nghttp2: Makefile pkgsrc/www/nghttp2-tools: Makefile pkgsrc/www/nginx: Makefile pkgsrc/www/otter-browser: Makefile pkgsrc/www/php-fpm: Makefile pkgsrc/www/php-http3: Makefile pkgsrc/www/phraseanet-indexer: Makefile pkgsrc/www/qutebrowser: Makefile pkgsrc/www/rekonq: Makefile pkgsrc/www/seamonkey: Makefile pkgsrc/www/sitecopy: Makefile pkgsrc/www/spdylay: Makefile buildlink3.mk pkgsrc/www/swish-e: Makefile pkgsrc/www/syndication: Makefile buildlink3.mk pkgsrc/www/uhttpmock: Makefile buildlink3.mk pkgsrc/www/vimb: Makefile pkgsrc/www/webkit-gtk: Makefile buildlink3.mk pkgsrc/www/webkit24-gtk: Makefile buildlink3.mk pkgsrc/www/webkit24-gtk3: Makefile buildlink3.mk pkgsrc/x11/avant-window-navigator: Makefile pkgsrc/x11/caribou: Makefile pkgsrc/x11/clisp-gtk2: Makefile pkgsrc/x11/deforaos-integration: Makefile pkgsrc/x11/devilspie: Makefile pkgsrc/x11/eekboard: Makefile buildlink3.mk pkgsrc/x11/frameworkintegration: Makefile buildlink3.mk pkgsrc/x11/gdm: Makefile pkgsrc/x11/gnome-desktop: Makefile pkgsrc/x11/gnome-session: Makefile pkgsrc/x11/gnome-shell: Makefile pkgsrc/x11/gnome-themes-extras: Makefile pkgsrc/x11/gnustep-back: Makefile buildlink3.mk pkgsrc/x11/gnustep-gui: Makefile buildlink3.mk pkgsrc/x11/gnustep-preferences: Makefile pkgsrc/x11/gtk-sharp: Makefile pkgsrc/x11/gtk-sharp3: Makefile pkgsrc/x11/gtkmm3: Makefile buildlink3.mk pkgsrc/x11/gtksourceview2: Makefile buildlink3.mk pkgsrc/x11/gtksourceview3: Makefile buildlink3.mk pkgsrc/x11/gtksourceview4: Makefile buildlink3.mk pkgsrc/x11/gtksourceviewmm: Makefile buildlink3.mk pkgsrc/x11/kactivities: Makefile buildlink3.mk pkgsrc/x11/kactivities-stats: Makefile buildlink3.mk pkgsrc/x11/kactivities5: Makefile buildlink3.mk pkgsrc/x11/kconfigwidgets: Makefile buildlink3.mk pkgsrc/x11/kde-baseapps4: Makefile pkgsrc/x11/kde-runtime4: Makefile buildlink3.mk pkgsrc/x11/kde-workspace4: Makefile buildlink3.mk pkgsrc/x11/kded: Makefile pkgsrc/x11/kdelibs4: Makefile buildlink3.mk pkgsrc/x11/kdelibs4support: Makefile buildlink3.mk pkgsrc/x11/kdesignerplugin: Makefile pkgsrc/x11/kglobalaccel: Makefile buildlink3.mk pkgsrc/x11/kguiaddons: Makefile buildlink3.mk pkgsrc/x11/kinit: Makefile pkgsrc/x11/kirigami2: Makefile buildlink3.mk pkgsrc/x11/kitemviews: Makefile buildlink3.mk pkgsrc/x11/kjobwidgets: Makefile buildlink3.mk pkgsrc/x11/konsole: Makefile pkgsrc/x11/ktextwidgets: Makefile buildlink3.mk pkgsrc/x11/kwidgetsaddons: Makefile buildlink3.mk pkgsrc/x11/kwindowsystem: Makefile buildlink3.mk pkgsrc/x11/kxmlgui: Makefile buildlink3.mk pkgsrc/x11/libdesktop-agnostic: Makefile buildlink3.mk pkgsrc/x11/libfm-qt: Makefile buildlink3.mk pkgsrc/x11/libgnomekbd: Makefile buildlink3.mk pkgsrc/x11/libkactivities4: Makefile buildlink3.mk pkgsrc/x11/libkscreen: Makefile buildlink3.mk pkgsrc/x11/liblxqt: Makefile buildlink3.mk pkgsrc/x11/libmatekbd: Makefile buildlink3.mk pkgsrc/x11/libqtxdg: Makefile buildlink3.mk pkgsrc/x11/libxfce4gui: Makefile buildlink3.mk pkgsrc/x11/libxkbcommon: Makefile pkgsrc/x11/libxklavier: Makefile buildlink3.mk pkgsrc/x11/lxqt-about: Makefile pkgsrc/x11/lxqt-admin: Makefile pkgsrc/x11/lxqt-config: Makefile pkgsrc/x11/lxqt-globalkeys: Makefile buildlink3.mk pkgsrc/x11/lxqt-notificationd: Makefile pkgsrc/x11/lxqt-panel: Makefile pkgsrc/x11/lxqt-qtplugin: Makefile pkgsrc/x11/lxqt-runner: Makefile pkgsrc/x11/lxqt-session: Makefile pkgsrc/x11/maim: Makefile pkgsrc/x11/mate-applets: Makefile pkgsrc/x11/mate-control-center: Makefile buildlink3.mk pkgsrc/x11/mate-panel: Makefile pkgsrc/x11/mate-screensaver: Makefile pkgsrc/x11/mate-settings-daemon: Makefile buildlink3.mk pkgsrc/x11/mlterm: Makefile pkgsrc/x11/ocaml-lablgtk: Makefile buildlink3.mk pkgsrc/x11/ocaml-lablgtk3: Makefile buildlink3.mk pkgsrc/x11/plasma-framework: Makefile buildlink3.mk pkgsrc/x11/py-gnome2: Makefile buildlink3.mk pkgsrc/x11/py-gnome2-extras: Makefile buildlink3.mk pkgsrc/x11/py-gtk2: Makefile buildlink3.mk pkgsrc/x11/py-gtksourceview: Makefile pkgsrc/x11/py-keybinder: Makefile buildlink3.mk pkgsrc/x11/py-kiwi: Makefile pkgsrc/x11/py-qt5: Makefile pkgsrc/x11/py-qt5-qscintilla: Makefile buildlink3.mk pkgsrc/x11/py-qwt-qt5: Makefile pkgsrc/x11/py-vte: Makefile pkgsrc/x11/qqc2-desktop-style: Makefile pkgsrc/x11/qt4-sqlite3: Makefile pkgsrc/x11/qt5-mysql: Makefile buildlink3.mk pkgsrc/x11/qt5-odbc: Makefile buildlink3.mk pkgsrc/x11/qt5-psql: Makefile buildlink3.mk pkgsrc/x11/qt5-qscintilla: Makefile buildlink3.mk pkgsrc/x11/qt5-qtbase: Makefile buildlink3.mk pkgsrc/x11/qt5-qtcharts: Makefile buildlink3.mk pkgsrc/x11/qt5-qtconnectivity: Makefile buildlink3.mk pkgsrc/x11/qt5-qtdeclarative: Makefile buildlink3.mk pkgsrc/x11/qt5-qtdoc: Makefile pkgsrc/x11/qt5-qtgraphicaleffects: Makefile pkgsrc/x11/qt5-qtimageformats: Makefile buildlink3.mk pkgsrc/x11/qt5-qtlocation: Makefile buildlink3.mk pkgsrc/x11/qt5-qtmacextras: Makefile buildlink3.mk pkgsrc/x11/qt5-qtmultimedia: Makefile buildlink3.mk pkgsrc/x11/qt5-qtnetworkauth: Makefile buildlink3.mk pkgsrc/x11/qt5-qtquickcontrols: Makefile buildlink3.mk pkgsrc/x11/qt5-qtquickcontrols2: Makefile buildlink3.mk pkgsrc/x11/qt5-qtscript: Makefile buildlink3.mk pkgsrc/x11/qt5-qtscxml: Makefile buildlink3.mk pkgsrc/x11/qt5-qtsensors: Makefile buildlink3.mk pkgsrc/x11/qt5-qtserialport: Makefile buildlink3.mk pkgsrc/x11/qt5-qtspeech: Makefile buildlink3.mk pkgsrc/x11/qt5-qtsvg: Makefile buildlink3.mk pkgsrc/x11/qt5-qttools: Makefile buildlink3.mk pkgsrc/x11/qt5-qttranslations: Makefile pkgsrc/x11/qt5-qtvirtualkeyboard: Makefile buildlink3.mk pkgsrc/x11/qt5-qtwayland: Makefile pkgsrc/x11/qt5-qtwebchannel: Makefile buildlink3.mk pkgsrc/x11/qt5-qtwebkit: Makefile buildlink3.mk pkgsrc/x11/qt5-qtwebsockets: Makefile buildlink3.mk pkgsrc/x11/qt5-qtx11extras: Makefile buildlink3.mk pkgsrc/x11/qt5-qtxmlpatterns: Makefile buildlink3.mk pkgsrc/x11/qterminal: Makefile pkgsrc/x11/qtermwidget: Makefile pkgsrc/x11/qwt6-qt5: Makefile buildlink3.mk pkgsrc/x11/rofi: Makefile pkgsrc/x11/rox-session: Makefile pkgsrc/x11/ruby-gtksourceview2: Makefile pkgsrc/x11/ruby-gtksourceview3: Makefile pkgsrc/x11/slop: Makefile pkgsrc/x11/tint2: Makefile pkgsrc/x11/vte3: Makefile pkgsrc/x11/wxGTK28: Makefile pkgsrc/x11/xcb-proto: Makefile pkgsrc/x11/xfce4-desktop: Makefile pkgsrc/x11/xfce4-notes-plugin: Makefile pkgsrc/x11/xfce4-screenshooter: Makefile pkgsrc/x11/xfce4-session: Makefile pkgsrc/x11/xfce4-settings: Makefile pkgsrc/x11/xfce4-tumbler: Makefile pkgsrc/x11/xfce4-wmdock-plugin: Makefile pkgsrc/x11/xlockmore: Makefile pkgsrc/x11/xpad: Makefile pkgsrc/x11/xscreensaver: Makefile buildlink3.mk pkgsrc/x11/xscreensaver-demo: Makefile pkgsrc/x11/xsnow: Makefile pkgsrc/x11/xvidcap: Makefile Log Message: revbump for textproc/icu --- Module Name: pkgsrc Committed By: taca Date: Thu Apr 29 05:55:54 UTC 2021 Modified Files: pkgsrc/net/bind916: Makefile distinfo Log Message: net/bind916: update to 9.16.15 Security release. --- 9.16.15 released --- 5621. [bug] Due to a backporting mistake in change 5609, named binaries built against a Kerberos/GSSAPI library whose header files did not define the GSS_SPNEGO_MECHANISM preprocessor macro were not able to start if their configuration included the "tkey-gssapi-credential" option. This has been fixed. [GL #2634] 5620. [bug] If zone journal files written by BIND 9.16.11 or earlier were present when BIND was upgraded, the zone file for that zone could have been inadvertently rewritten with the current zone contents. This caused the original zone file structure (e.g. comments, $INCLUDE directives) to be lost, although the zone data itself was preserved. This has been fixed. [GL #2623] --- 9.16.14 released --- 5617. [security] A specially crafted GSS-TSIG query could cause a buffer overflow in the ISC implementation of SPNEGO. (CVE-2021-25216) [GL #2604] 5616. [security] named crashed when a DNAME record placed in the ANSWER section during DNAME chasing turned out to be the final answer to a client query. (CVE-2021-25215) [GL #2540] 5615. [security] Insufficient IXFR checks could result in named serving a zone without an SOA record at the apex, leading to a RUNTIME_CHECK assertion failure when the zone was subsequently refreshed. This has been fixed by adding an owner name check for all SOA records which are included in a zone transfer. (CVE-2021-25214) [GL #2467] 5614. [bug] Ensure all resources are properly cleaned up when a call to gss_accept_sec_context() fails. [GL #2620] 5613. [bug] It was possible to write an invalid transaction header in the journal file for a managed-keys database after upgrading. This has been fixed. Invalid headers in existing journal files are detected and named is able to recover from them. [GL #2600] 5611. [func] Set "stale-answer-client-timeout" to "off" by default. [GL #2608] 5610. [bug] Prevent a crash which could happen when a lookup triggered by "stale-answer-client-timeout" was attempted right after recursion for a client query finished. [GL #2594] 5609. [func] The ISC implementation of SPNEGO was removed from BIND 9 source code. It was no longer necessary as all major contemporary Kerberos/GSSAPI libraries include support for SPNEGO. [GL #2607] 5608. [bug] When sending queries over TCP, dig now properly handles "+tries=1 +retry=0" by not retrying the connection when the remote server closes the connection prematurely. [GL #2490] 5607. [bug] As "rndc dnssec -checkds" and "rndc dnssec -rollover" commands may affect the next scheduled key event, reconfiguration of zone keys is now triggered after receiving either of these commands to prevent unnecessary key rollover delays. [GL #2488] 5606. [bug] CDS/CDNSKEY DELETE records are now removed when a zone transitions from a secure to an insecure state. named-checkzone also no longer reports an error when such records are found in an unsigned zone. [GL #2517] 5605. [bug] "dig -u" now uses the CLOCK_REALTIME clock source for more accurate time reporting. [GL #2592] 5603. [bug] Fix a memory leak that occurred when named failed to bind a UDP socket to a network interface. [GL #2575] 5602. [bug] Fix TCPDNS and TLSDNS timers in Network Manager. This makes the "tcp-initial-timeout" and "tcp-idle-timeout" options work correctly again. [GL #2583] 5601. [bug] Zones using KASP could not be thawed after they were frozen using "rndc freeze". This has been fixed. [GL #2523]
2021-04-30Pullup ticket #6453 - requested by tacabsiegert2-7/+7
net/bind911: security fix Revisions pulled up: - net/bind911/Makefile 1.41-1.42 - net/bind911/distinfo 1.30 --- Module Name: pkgsrc Committed By: adam Date: Wed Apr 21 11:43:04 UTC 2021 Modified Files: pkgsrc/archivers/ark: Makefile pkgsrc/archivers/arqiver: Makefile pkgsrc/archivers/karchive: Makefile buildlink3.mk pkgsrc/archivers/lxqt-archiver: Makefile pkgsrc/archivers/quazip: Makefile buildlink3.mk pkgsrc/audio/ardour: Makefile pkgsrc/audio/ario: Makefile pkgsrc/audio/audacious: Makefile buildlink3.mk pkgsrc/audio/audacious-plugins: Makefile pkgsrc/audio/bmp: Makefile pkgsrc/audio/buzztrax: Makefile pkgsrc/audio/cantata: Makefile pkgsrc/audio/cddb-bundle: Makefile pkgsrc/audio/cdplayer: Makefile pkgsrc/audio/ezstream: Makefile pkgsrc/audio/flactag: Makefile pkgsrc/audio/forked-daapd: Makefile pkgsrc/audio/gbemol: Makefile pkgsrc/audio/glurp: Makefile pkgsrc/audio/glyr: Makefile buildlink3.mk pkgsrc/audio/gmpc: Makefile pkgsrc/audio/gmpc-albumview: Makefile pkgsrc/audio/gmpc-jamendo: Makefile pkgsrc/audio/gmpc-lyrics: Makefile pkgsrc/audio/gmpc-lyricwiki: Makefile pkgsrc/audio/gmpc-magnatune: Makefile pkgsrc/audio/gmpc-tagedit: Makefile pkgsrc/audio/grip: Makefile pkgsrc/audio/gst-plugins0.10-a52: Makefile pkgsrc/audio/gst-plugins0.10-dts: Makefile pkgsrc/audio/gst-plugins0.10-faac: Makefile pkgsrc/audio/gst-plugins0.10-faad: Makefile pkgsrc/audio/gst-plugins0.10-flac: Makefile pkgsrc/audio/gst-plugins0.10-fluendo-mp3: Makefile pkgsrc/audio/gst-plugins0.10-jack: Makefile pkgsrc/audio/gst-plugins0.10-lame: Makefile pkgsrc/audio/gst-plugins0.10-mad: Makefile pkgsrc/audio/gst-plugins0.10-musepack: Makefile pkgsrc/audio/gst-plugins0.10-oss: Makefile pkgsrc/audio/gst-plugins0.10-pulse: Makefile pkgsrc/audio/gst-plugins0.10-sid: Makefile pkgsrc/audio/gst-plugins0.10-soundtouch: Makefile pkgsrc/audio/gst-plugins0.10-spc: Makefile pkgsrc/audio/gst-plugins0.10-speex: Makefile pkgsrc/audio/gst-plugins0.10-twolame: Makefile pkgsrc/audio/gst-plugins0.10-wavpack: Makefile pkgsrc/audio/gtkpod: Makefile pkgsrc/audio/hydrogen: Makefile pkgsrc/audio/icecast: Makefile pkgsrc/audio/ices-mp3: Makefile pkgsrc/audio/jack-rack: Makefile pkgsrc/audio/kid3: Makefile pkgsrc/audio/libgpod: Makefile buildlink3.mk pkgsrc/audio/libmusicbrainz5: Makefile buildlink3.mk pkgsrc/audio/liteamp: Makefile pkgsrc/audio/lmms: Makefile pkgsrc/audio/mixxx: Makefile pkgsrc/audio/mp3diags: Makefile pkgsrc/audio/musescore: Makefile pkgsrc/audio/musicpd: Makefile pkgsrc/audio/ncmpcpp: Makefile pkgsrc/audio/paman: Makefile pkgsrc/audio/paprefs: Makefile pkgsrc/audio/pavucontrol: Makefile pkgsrc/audio/pavucontrol-qt: Makefile pkgsrc/audio/pavumeter: Makefile pkgsrc/audio/pragha: Makefile pkgsrc/audio/py-musique: Makefile pkgsrc/audio/qjackctl: Makefile pkgsrc/audio/qmmp: Makefile pkgsrc/audio/qsynth: Makefile pkgsrc/audio/quodlibet: Makefile pkgsrc/audio/rhythmbox: Makefile pkgsrc/audio/solfege: Makefile pkgsrc/audio/sound-juicer: Makefile pkgsrc/audio/spotify-qt: Makefile pkgsrc/audio/streamtuner: Makefile pkgsrc/audio/terminatorx: Makefile pkgsrc/audio/traverso: Makefile pkgsrc/audio/xfce4-mixer: Makefile pkgsrc/audio/xfce4-xmms-plugin: Makefile pkgsrc/benchmarks/dnsperf: Makefile pkgsrc/benchmarks/sysbench: Makefile pkgsrc/biology/bodr: Makefile pkgsrc/biology/gnome-chemistry-utils: Makefile pkgsrc/biology/gromacs: Makefile pkgsrc/biology/molsketch: Makefile pkgsrc/biology/ncbi-blast+: Makefile pkgsrc/biology/openbabel: Makefile buildlink3.mk pkgsrc/cad/gtkwave: Makefile pkgsrc/cad/klayout: Makefile pkgsrc/cad/librecad: Makefile pkgsrc/cad/libredwg: Makefile pkgsrc/cad/openscad: Makefile pkgsrc/cad/qcad: Makefile pkgsrc/chat/anope: Makefile pkgsrc/chat/carbons-purple: Makefile pkgsrc/chat/centerim5: Makefile pkgsrc/chat/dino: Makefile pkgsrc/chat/farstream: Makefile pkgsrc/chat/finch: Makefile pkgsrc/chat/hexchat: Makefile pkgsrc/chat/jabberd2: Makefile pkgsrc/chat/konversation: Makefile pkgsrc/chat/ktp-accounts-kcm: Makefile pkgsrc/chat/ktp-approver: Makefile pkgsrc/chat/ktp-auth-handler: Makefile pkgsrc/chat/ktp-common-internals: Makefile buildlink3.mk pkgsrc/chat/ktp-contact-list: Makefile pkgsrc/chat/ktp-contact-runner: Makefile pkgsrc/chat/ktp-desktop-applets: Makefile pkgsrc/chat/ktp-filetransfer-handler: Makefile pkgsrc/chat/ktp-kded-integration-module: Makefile pkgsrc/chat/ktp-send-file: Makefile pkgsrc/chat/ktp-text-ui: Makefile pkgsrc/chat/libfolks: Makefile pkgsrc/chat/libgadu: Makefile pkgsrc/chat/libpurple: Makefile buildlink3.mk pkgsrc/chat/libtelepathy: Makefile pkgsrc/chat/lurch-purple: Makefile pkgsrc/chat/mumble: Makefile pkgsrc/chat/pidgin: Makefile buildlink3.mk pkgsrc/chat/pidgin-facebookchat: Makefile pkgsrc/chat/pidgin-icb: Makefile pkgsrc/chat/pidgin-latex: Makefile pkgsrc/chat/pidgin-libnotify: Makefile pkgsrc/chat/pidgin-otr: Makefile pkgsrc/chat/pidgin-sametime: Makefile pkgsrc/chat/pidgin-silc: Makefile pkgsrc/chat/profanity: Makefile pkgsrc/chat/psi: Makefile pkgsrc/chat/quassel: Makefile pkgsrc/chat/skypeweb-purple: Makefile pkgsrc/chat/spectrum: Makefile pkgsrc/chat/srain: Makefile pkgsrc/chat/swift: Makefile pkgsrc/chat/telegram-purple: Makefile pkgsrc/chat/telepathy-gabble: Makefile pkgsrc/chat/telepathy-glib: Makefile pkgsrc/chat/telepathy-haze: Makefile pkgsrc/chat/telepathy-idle: Makefile pkgsrc/chat/telepathy-logger: Makefile buildlink3.mk pkgsrc/chat/telepathy-mission-control5: Makefile pkgsrc/chat/telepathy-qt5: Makefile buildlink3.mk pkgsrc/chat/znc: Makefile pkgsrc/comms/asterisk13: Makefile pkgsrc/comms/asterisk15: Makefile pkgsrc/comms/asterisk16: Makefile pkgsrc/comms/libopensync: Makefile buildlink3.mk pkgsrc/comms/libopensync-plugin-file: Makefile pkgsrc/comms/libopensync-plugin-syncml: Makefile pkgsrc/comms/libsyncml: Makefile pkgsrc/comms/msynctool: Makefile pkgsrc/comms/multisync-gui: Makefile pkgsrc/comms/spandsp: Makefile pkgsrc/comms/tilp2: Makefile pkgsrc/comms/xfce4-modemlights-plugin: Makefile pkgsrc/converters/libabw: Makefile pkgsrc/converters/libcdr: Makefile buildlink3.mk pkgsrc/converters/libe-book: Makefile pkgsrc/converters/libetonyek: Makefile pkgsrc/converters/libfreehand: Makefile pkgsrc/converters/libmspub: Makefile pkgsrc/converters/libqxp: Makefile pkgsrc/converters/libvisio: Makefile buildlink3.mk pkgsrc/converters/libzmf: Makefile pkgsrc/converters/pyzy: Makefile buildlink3.mk pkgsrc/converters/wv: Makefile buildlink3.mk pkgsrc/converters/wv2: Makefile buildlink3.mk pkgsrc/databases/SQLiteCpp: Makefile buildlink3.mk pkgsrc/databases/couchdb: Makefile pkgsrc/databases/csharp-mysql: Makefile pkgsrc/databases/deforaos-libdatabase: Makefile pkgsrc/databases/erlang-sqlite3: Makefile pkgsrc/databases/gom: Makefile pkgsrc/databases/gourmet: Makefile pkgsrc/databases/gramps3: Makefile pkgsrc/databases/gtkdbfeditor: Makefile pkgsrc/databases/guile-sqlite3: Makefile pkgsrc/databases/idzebra: Makefile buildlink3.mk pkgsrc/databases/kldap: Makefile buildlink3.mk pkgsrc/databases/libdbi-driver-sqlite3: Makefile pkgsrc/databases/libgda: Makefile buildlink3.mk pkgsrc/databases/libgda-mysql: Makefile pkgsrc/databases/libgda-postgres: Makefile pkgsrc/databases/libzdb: Makefile buildlink3.mk pkgsrc/databases/lua-dbi-sqlite3: Makefile pkgsrc/databases/lua-lsqlite3: Makefile pkgsrc/databases/lua-sql-sqlite3: Makefile pkgsrc/databases/lua-sqlite3: Makefile pkgsrc/databases/mongo-c-driver: Makefile buildlink3.mk pkgsrc/databases/mongodb: Makefile pkgsrc/databases/mongodb3: Makefile pkgsrc/databases/mysql-workbench: Makefile pkgsrc/databases/ocaml-sqlite3: Makefile pkgsrc/databases/p5-DBD-SQLite: Makefile pkgsrc/databases/p5-RRD-Simple: Makefile pkgsrc/databases/pgadmin3: Makefile pkgsrc/databases/php-mongodb: Makefile pkgsrc/databases/php-pdo_sqlite: Makefile pkgsrc/databases/php-rrd: Makefile pkgsrc/databases/php-sqlite3: Makefile pkgsrc/databases/poco-data-sqlite: Makefile buildlink3.mk pkgsrc/databases/postgresql-postgis2: Makefile buildlink3.mk pkgsrc/databases/postgresql-promscale_extension: Makefile pkgsrc/databases/postgresql10: Makefile pkgsrc/databases/postgresql10-client: Makefile pkgsrc/databases/postgresql10-contrib: Makefile pkgsrc/databases/postgresql10-docs: Makefile pkgsrc/databases/postgresql10-plperl: Makefile pkgsrc/databases/postgresql10-plpython: Makefile pkgsrc/databases/postgresql10-pltcl: Makefile pkgsrc/databases/postgresql10-server: Makefile pkgsrc/databases/postgresql11: Makefile pkgsrc/databases/postgresql11-client: Makefile pkgsrc/databases/postgresql11-contrib: Makefile pkgsrc/databases/postgresql11-docs: Makefile pkgsrc/databases/postgresql11-plperl: Makefile pkgsrc/databases/postgresql11-plpython: Makefile pkgsrc/databases/postgresql11-pltcl: Makefile pkgsrc/databases/postgresql11-server: Makefile pkgsrc/databases/postgresql12: Makefile pkgsrc/databases/postgresql12-client: Makefile pkgsrc/databases/postgresql12-contrib: Makefile pkgsrc/databases/postgresql12-docs: Makefile pkgsrc/databases/postgresql12-plperl: Makefile pkgsrc/databases/postgresql12-plpython: Makefile pkgsrc/databases/postgresql12-pltcl: Makefile pkgsrc/databases/postgresql12-server: Makefile pkgsrc/databases/postgresql13: Makefile pkgsrc/databases/postgresql13-client: Makefile pkgsrc/databases/postgresql13-contrib: Makefile pkgsrc/databases/postgresql13-docs: Makefile pkgsrc/databases/postgresql13-plperl: Makefile pkgsrc/databases/postgresql13-plpython: Makefile pkgsrc/databases/postgresql13-pltcl: Makefile pkgsrc/databases/postgresql13-server: Makefile pkgsrc/databases/postgresql95: Makefile pkgsrc/databases/postgresql95-client: Makefile pkgsrc/databases/postgresql95-contrib: Makefile pkgsrc/databases/postgresql95-docs: Makefile pkgsrc/databases/postgresql95-plperl: Makefile pkgsrc/databases/postgresql95-plpython: Makefile pkgsrc/databases/postgresql95-pltcl: Makefile pkgsrc/databases/postgresql95-server: Makefile pkgsrc/databases/postgresql96: Makefile pkgsrc/databases/postgresql96-client: Makefile pkgsrc/databases/postgresql96-contrib: Makefile pkgsrc/databases/postgresql96-docs: Makefile pkgsrc/databases/postgresql96-plperl: Makefile pkgsrc/databases/postgresql96-plpython: Makefile pkgsrc/databases/postgresql96-pltcl: Makefile pkgsrc/databases/postgresql96-server: Makefile pkgsrc/databases/py-apsw: Makefile pkgsrc/databases/py-peewee: Makefile pkgsrc/databases/py-rrdtool: Makefile pkgsrc/databases/py-sqlite2: Makefile pkgsrc/databases/py-sqlite3: Makefile pkgsrc/databases/qore-sqlite3-module: Makefile pkgsrc/databases/repmgr: Makefile pkgsrc/databases/rrdtool: Makefile buildlink3.mk pkgsrc/databases/ruby-do_sqlite3: Makefile pkgsrc/databases/ruby-rrdtool: Makefile pkgsrc/databases/ruby-sqlite3: Makefile pkgsrc/databases/shared-mime-info: Makefile pkgsrc/databases/soci: Makefile pkgsrc/databases/sqlite3: Makefile buildlink3.mk pkgsrc/databases/sqlite3-tcl: Makefile pkgsrc/databases/sqlitebrowser: Makefile pkgsrc/databases/sqlrelay-sqlite: Makefile pkgsrc/databases/virtuoso: Makefile pkgsrc/databases/vsqlite++: Makefile buildlink3.mk pkgsrc/devel/GConf: Makefile buildlink3.mk pkgsrc/devel/GConf-ui: Makefile buildlink3.mk pkgsrc/devel/Gorm: Makefile pkgsrc/devel/ObjectiveLib: Makefile pkgsrc/devel/ProjectCenter: Makefile pkgsrc/devel/Renaissance: Makefile buildlink3.mk pkgsrc/devel/SOPE: Makefile pkgsrc/devel/SOPE4: Makefile pkgsrc/devel/aegis: Makefile pkgsrc/devel/anjuta: Makefile pkgsrc/devel/appdata-tools: Makefile pkgsrc/devel/appstream-glib: Makefile pkgsrc/devel/apr-util: Makefile pkgsrc/devel/at-spi: Makefile buildlink3.mk pkgsrc/devel/autogen: Makefile pkgsrc/devel/cervisia: Makefile pkgsrc/devel/cmake-gui: Makefile pkgsrc/devel/coconut: Makefile pkgsrc/devel/compiz-bcop: Makefile pkgsrc/devel/compizconfig-backend-gconf: Makefile buildlink3.mk pkgsrc/devel/cppcheck: Makefile pkgsrc/devel/creduce: Makefile pkgsrc/devel/cutter: Makefile pkgsrc/devel/devhelp: Makefile pkgsrc/devel/dia2code: Makefile pkgsrc/devel/distccmon-gnome: Makefile pkgsrc/devel/dolphin-plugins: Makefile pkgsrc/devel/doxygen: Makefile pkgsrc/devel/doxymacs: Makefile pkgsrc/devel/dumpet: Makefile pkgsrc/devel/edcommon: Makefile pkgsrc/devel/fossil: Makefile pkgsrc/devel/frama-c: Makefile pkgsrc/devel/gconfmm: Makefile buildlink3.mk pkgsrc/devel/gdl: Makefile pkgsrc/devel/gearmand: Makefile pkgsrc/devel/glade: Makefile buildlink3.mk pkgsrc/devel/global: Makefile pkgsrc/devel/gmtk: Makefile buildlink3.mk pkgsrc/devel/gnustep-base: Makefile buildlink3.mk pkgsrc/devel/gnustep-examples: Makefile pkgsrc/devel/gps: Makefile pkgsrc/devel/grantlee-qt5: Makefile buildlink3.mk pkgsrc/devel/guile-gnome: Makefile pkgsrc/devel/hyperscan: Makefile pkgsrc/devel/include-what-you-use: Makefile pkgsrc/devel/java-subversion: Makefile pkgsrc/devel/kapptemplate: Makefile pkgsrc/devel/kbookmarks: Makefile buildlink3.mk pkgsrc/devel/kcachegrind: Makefile pkgsrc/devel/kcmutils: Makefile buildlink3.mk pkgsrc/devel/kconfig: Makefile buildlink3.mk pkgsrc/devel/kcoreaddons: Makefile buildlink3.mk pkgsrc/devel/kcrash: Makefile buildlink3.mk pkgsrc/devel/kde-dev-scripts: Makefile pkgsrc/devel/kde-dev-utils: Makefile pkgsrc/devel/kdeclarative: Makefile buildlink3.mk pkgsrc/devel/kdesdk-kioslaves: Makefile pkgsrc/devel/kdesdk-strigi-analyzers: Makefile pkgsrc/devel/kdesdk-thumbnailers: Makefile pkgsrc/devel/kdevelop4: Makefile pkgsrc/devel/kdevplatform: Makefile pkgsrc/devel/kdiff3: Makefile pkgsrc/devel/kdoctools: Makefile buildlink3.mk pkgsrc/devel/ki18n: Makefile pkgsrc/devel/kidletime: Makefile buildlink3.mk pkgsrc/devel/kio: Makefile buildlink3.mk pkgsrc/devel/kio-extras: Makefile pkgsrc/devel/kitemmodels: Makefile buildlink3.mk pkgsrc/devel/knotifications: Makefile buildlink3.mk pkgsrc/devel/knotifyconfig: Makefile buildlink3.mk pkgsrc/devel/kompare: Makefile pkgsrc/devel/kpackage: Makefile buildlink3.mk pkgsrc/devel/kparts: Makefile buildlink3.mk pkgsrc/devel/kpeople: Makefile buildlink3.mk pkgsrc/devel/kpty: Makefile buildlink3.mk pkgsrc/devel/kross: Makefile buildlink3.mk pkgsrc/devel/krunner: Makefile buildlink3.mk pkgsrc/devel/kservice: Makefile buildlink3.mk pkgsrc/devel/ktexteditor: Makefile buildlink3.mk pkgsrc/devel/kwayland: Makefile buildlink3.mk pkgsrc/devel/kyua: Makefile pkgsrc/devel/libappindicator: Makefile pkgsrc/devel/libbonobo: Makefile buildlink3.mk pkgsrc/devel/libbonoboui: Makefile buildlink3.mk pkgsrc/devel/libcompizconfig: Makefile buildlink3.mk pkgsrc/devel/libdbusmenu-qt5: Makefile buildlink3.mk pkgsrc/devel/libextractor: Makefile buildlink3.mk pkgsrc/devel/libglade: Makefile buildlink3.mk pkgsrc/devel/libglademm: Makefile buildlink3.mk pkgsrc/devel/libgnome: Makefile buildlink3.mk pkgsrc/devel/libgnomemm: Makefile buildlink3.mk pkgsrc/devel/libgnomeui: Makefile buildlink3.mk pkgsrc/devel/libgnomeuimm: Makefile buildlink3.mk pkgsrc/devel/libgnt: Makefile buildlink3.mk pkgsrc/devel/libgphoto2: Makefile buildlink3.mk pkgsrc/devel/libgsf: Makefile buildlink3.mk pkgsrc/devel/libgweather: Makefile buildlink3.mk pkgsrc/devel/libhid: Makefile pkgsrc/devel/libkgapi: Makefile pkgsrc/devel/libkomparediff2: Makefile buildlink3.mk pkgsrc/devel/liblangtag: Makefile pkgsrc/devel/libsexy: Makefile buildlink3.mk pkgsrc/devel/libsexymm: Makefile buildlink3.mk pkgsrc/devel/libxenserver: Makefile buildlink3.mk pkgsrc/devel/lokalize: Makefile pkgsrc/devel/lxqt-build-tools: Makefile pkgsrc/devel/m17n-lib: Makefile buildlink3.mk pkgsrc/devel/meld: Makefile pkgsrc/devel/monotone: Makefile pkgsrc/devel/monotone-viz: Makefile pkgsrc/devel/nss: Makefile pkgsrc/devel/ocamlgraph: Makefile pkgsrc/devel/okteta: Makefile pkgsrc/devel/opengrok: Makefile pkgsrc/devel/p5-Gnome2: Makefile pkgsrc/devel/p5-Gnome2-GConf: Makefile pkgsrc/devel/p5-Gtk2-GladeXML: Makefile pkgsrc/devel/p5-subversion: Makefile pkgsrc/devel/plasma-wayland-protocols: Makefile pkgsrc/devel/poxml: Makefile pkgsrc/devel/purpose: Makefile buildlink3.mk pkgsrc/devel/py-compizconfig: Makefile buildlink3.mk pkgsrc/devel/py-pysvn: Makefile pkgsrc/devel/py-subversion: Makefile pkgsrc/devel/py-subvertpy: Makefile pkgsrc/devel/py-tortoisehg: Makefile pkgsrc/devel/py-tryton: Makefile pkgsrc/devel/qconf: Makefile pkgsrc/devel/radare2-cutter: Makefile pkgsrc/devel/rapidsvn: Makefile pkgsrc/devel/ruby-redmine: Makefile pkgsrc/devel/ruby-subversion: Makefile pkgsrc/devel/startbug1: Makefile pkgsrc/devel/subversion-base: Makefile buildlink3.mk pkgsrc/devel/threadweaver: Makefile buildlink3.mk pkgsrc/devel/umbrello: Makefile pkgsrc/devel/verifast: Makefile pkgsrc/devel/wayland: Makefile pkgsrc/devel/woboq_codebrowser: Makefile pkgsrc/devel/zeal: Makefile pkgsrc/editors/Sigil: Makefile pkgsrc/editors/TeXmacs: Makefile pkgsrc/editors/abiword: Makefile buildlink3.mk pkgsrc/editors/abiword-plugins: Makefile pkgsrc/editors/codelite: Makefile pkgsrc/editors/emacs25: Makefile pkgsrc/editors/emacs26: Makefile pkgsrc/editors/emacs27: Makefile pkgsrc/editors/feathernotes: Makefile pkgsrc/editors/featherpad: Makefile pkgsrc/editors/focuswriter: Makefile pkgsrc/editors/gedit: Makefile pkgsrc/editors/gobby: Makefile pkgsrc/editors/gtranslator: Makefile pkgsrc/editors/gummi: Makefile pkgsrc/editors/kate: Makefile pkgsrc/editors/kile: Makefile pkgsrc/editors/lyx: Makefile pkgsrc/editors/medit: Makefile pkgsrc/editors/pluma: Makefile pkgsrc/editors/poedit: Makefile pkgsrc/editors/qtcreator: Makefile pkgsrc/editors/sasm: Makefile pkgsrc/editors/tea: Makefile pkgsrc/editors/tepl4: Makefile buildlink3.mk pkgsrc/editors/texmaker: Makefile pkgsrc/editors/texstudio: Makefile pkgsrc/editors/texworks: Makefile pkgsrc/editors/vim-gtk2: Makefile pkgsrc/editors/xfce4-mousepad: Makefile pkgsrc/editors/xournal: Makefile pkgsrc/editors/xournalpp: Makefile pkgsrc/emulators/PC6001VX: Makefile pkgsrc/emulators/bsnes: Makefile pkgsrc/emulators/ckmame: Makefile pkgsrc/emulators/fuse-emulator: Makefile pkgsrc/emulators/mame: Makefile pkgsrc/emulators/mgba: Makefile pkgsrc/emulators/retroarch: Makefile pkgsrc/emulators/rpcemu: Makefile pkgsrc/emulators/ski: Makefile pkgsrc/emulators/wine: Makefile pkgsrc/emulators/yabause: Makefile pkgsrc/filesystems/cloudfuse: Makefile pkgsrc/filesystems/fuse-darling-dmg: Makefile pkgsrc/filesystems/fuse-gphotofs: Makefile pkgsrc/filesystems/fuse-loggedfs: Makefile pkgsrc/filesystems/fuse-pod: Makefile pkgsrc/filesystems/fuse-svnfs: Makefile pkgsrc/filesystems/glusterfs: Makefile pkgsrc/filesystems/ltfs: Makefile pkgsrc/filesystems/ltfs-ltotape: Makefile pkgsrc/filesystems/ori: Makefile pkgsrc/finance/bitcoin: Makefile pkgsrc/finance/gnucash: Makefile pkgsrc/finance/homebank: Makefile pkgsrc/finance/libofx: Makefile pkgsrc/fonts/fontforge: Makefile pkgsrc/fonts/gucharmap: Makefile buildlink3.mk pkgsrc/fonts/harfbuzz-icu: Makefile pkgsrc/games/amor: Makefile pkgsrc/games/armagetronad: Makefile pkgsrc/games/armagetronad-server: Makefile pkgsrc/games/atomix: Makefile pkgsrc/games/blinken: Makefile pkgsrc/games/bomber: Makefile pkgsrc/games/bovo: Makefile pkgsrc/games/ccgo: Makefile pkgsrc/games/crossfire-server: Makefile pkgsrc/games/easyrpg-player: Makefile pkgsrc/games/eternal-lands: Makefile pkgsrc/games/etlegacy: Makefile pkgsrc/games/etlegacy-server: Makefile pkgsrc/games/flightgear: Makefile pkgsrc/games/fna: Makefile buildlink3.mk pkgsrc/games/fnaify: Makefile pkgsrc/games/gamazons: Makefile pkgsrc/games/gbrainy: Makefile pkgsrc/games/gcompris: Makefile pkgsrc/games/genecys-client: Makefile pkgsrc/games/gnome-mastermind: Makefile pkgsrc/games/granatier: Makefile pkgsrc/games/grhino: Makefile pkgsrc/games/kajongg: Makefile pkgsrc/games/kanagram: Makefile pkgsrc/games/kanatest: Makefile pkgsrc/games/kapman: Makefile pkgsrc/games/katomic: Makefile pkgsrc/games/kblackbox: Makefile pkgsrc/games/kblocks: Makefile pkgsrc/games/kbounce: Makefile pkgsrc/games/kbreakout: Makefile pkgsrc/games/kdiamond: Makefile pkgsrc/games/kfourinline: Makefile pkgsrc/games/kgoldrunner: Makefile pkgsrc/games/khangman: Makefile pkgsrc/games/kigo: Makefile pkgsrc/games/killbots: Makefile pkgsrc/games/kiriki: Makefile pkgsrc/games/kjumpingcube: Makefile pkgsrc/games/klickety: Makefile pkgsrc/games/klines: Makefile pkgsrc/games/kmahjongg: Makefile pkgsrc/games/kmines: Makefile pkgsrc/games/knavalbattle: Makefile pkgsrc/games/knetwalk: Makefile pkgsrc/games/kolf: Makefile pkgsrc/games/kollision: Makefile pkgsrc/games/konquest: Makefile pkgsrc/games/kpat: Makefile pkgsrc/games/kreversi: Makefile pkgsrc/games/kshisen: Makefile pkgsrc/games/ksirk: Makefile pkgsrc/games/ksnakeduel: Makefile pkgsrc/games/kspaceduel: Makefile pkgsrc/games/ksquares: Makefile pkgsrc/games/ksudoku: Makefile pkgsrc/games/ktuberling: Makefile pkgsrc/games/kubrick: Makefile pkgsrc/games/kye: Makefile pkgsrc/games/libkdegames: Makefile buildlink3.mk pkgsrc/games/libkmahjongg: Makefile buildlink3.mk pkgsrc/games/liblcf: Makefile buildlink3.mk pkgsrc/games/lincity-ng: Makefile pkgsrc/games/lskat: Makefile pkgsrc/games/manaplus: Makefile pkgsrc/games/megaglest: Makefile pkgsrc/games/minetest: Makefile pkgsrc/games/naev: Makefile pkgsrc/games/openmw: Makefile pkgsrc/games/openrct2: Makefile pkgsrc/games/openttd: Makefile pkgsrc/games/palapeli: Makefile pkgsrc/games/picmi: Makefile pkgsrc/games/pioneers: Makefile pkgsrc/games/q5go: Makefile pkgsrc/games/quarry: Makefile pkgsrc/games/simgear: Makefile buildlink3.mk pkgsrc/games/solarus: Makefile pkgsrc/games/stone-soup: Makefile pkgsrc/games/stone-soup-sdl: Makefile pkgsrc/games/teg: Makefile pkgsrc/games/warmux: Makefile pkgsrc/games/warzone2100: Makefile pkgsrc/games/widelands: Makefile pkgsrc/games/xboard: Makefile pkgsrc/games/xu4: Makefile pkgsrc/geography/R-lwgeom: Makefile pkgsrc/geography/R-rgdal: Makefile pkgsrc/geography/R-sf: Makefile pkgsrc/geography/gama: Makefile pkgsrc/geography/gdal-lib: Makefile buildlink3.mk pkgsrc/geography/geoclue: Makefile pkgsrc/geography/geocode-glib: Makefile pkgsrc/geography/gpsbabel: Makefile pkgsrc/geography/gpxsee: Makefile pkgsrc/geography/libchamplain012: Makefile buildlink3.mk pkgsrc/geography/libgeotiff: Makefile buildlink3.mk pkgsrc/geography/libspatialite: Makefile buildlink3.mk pkgsrc/geography/mapserver: Makefile pkgsrc/geography/merkaartor: Makefile pkgsrc/geography/osm-gps-map: Makefile pkgsrc/geography/osm2pgsql: Makefile pkgsrc/geography/proj: Makefile buildlink3.mk pkgsrc/geography/py-gdal: Makefile pkgsrc/geography/py-proj: Makefile pkgsrc/geography/qgis: Makefile pkgsrc/geography/qlandkartegt: Makefile pkgsrc/geography/qlandkartem: Makefile pkgsrc/geography/viking: Makefile pkgsrc/graphics/Cenon: Makefile pkgsrc/graphics/GraphicsMagick: Makefile pkgsrc/graphics/ImageMagick: Makefile buildlink3.mk pkgsrc/graphics/ImageMagick6: Makefile buildlink3.mk pkgsrc/graphics/ImageViewer: Makefile pkgsrc/graphics/autopano-sift-C: Makefile pkgsrc/graphics/autotrace: Makefile pkgsrc/graphics/breeze-icons: Makefile pkgsrc/graphics/camlimages: Makefile pkgsrc/graphics/colord: Makefile pkgsrc/graphics/comix: Makefile pkgsrc/graphics/darktable: Makefile pkgsrc/graphics/denemo: Makefile pkgsrc/graphics/dia: Makefile pkgsrc/graphics/dia-python: Makefile pkgsrc/graphics/digikam: Makefile pkgsrc/graphics/djview4: Makefile pkgsrc/graphics/dx: Makefile pkgsrc/graphics/eog: Makefile pkgsrc/graphics/eom: Makefile pkgsrc/graphics/frameworks: Makefile pkgsrc/graphics/geeqie: Makefile pkgsrc/graphics/gegl: Makefile pkgsrc/graphics/gimp: Makefile buildlink3.mk pkgsrc/graphics/gimp-color-manager: Makefile pkgsrc/graphics/gimp-exif-browser: Makefile pkgsrc/graphics/gimp-fix-ca: Makefile pkgsrc/graphics/gimp-jxr: Makefile pkgsrc/graphics/gimp-liquid-rescale: Makefile pkgsrc/graphics/gimp-rawphoto: Makefile pkgsrc/graphics/gimp-refocus-it: Makefile pkgsrc/graphics/gimp-resynthesizer: Makefile pkgsrc/graphics/gimp-ufraw: Makefile pkgsrc/graphics/gimp2-wideangle: Makefile pkgsrc/graphics/gmic: Makefile pkgsrc/graphics/gnome-icon-theme-symbolic: Makefile pkgsrc/graphics/gnome-themes-standard: Makefile pkgsrc/graphics/gnuplot: Makefile pkgsrc/graphics/gphoto2: Makefile pkgsrc/graphics/graphviz: Makefile pkgsrc/graphics/gst-plugins0.10-cairo: Makefile pkgsrc/graphics/gst-plugins0.10-jpeg: Makefile pkgsrc/graphics/gst-plugins0.10-png: Makefile pkgsrc/graphics/gthumb: Makefile pkgsrc/graphics/gthumb3: Makefile pkgsrc/graphics/gtkam: Makefile pkgsrc/graphics/gwenview: Makefile pkgsrc/graphics/hugin: Makefile pkgsrc/graphics/imv: Makefile pkgsrc/graphics/inkscape: Makefile pkgsrc/graphics/ipe: Makefile pkgsrc/graphics/kamera: Makefile pkgsrc/graphics/kcolorchooser: Makefile pkgsrc/graphics/kde-base-artwork: Makefile pkgsrc/graphics/kdegraphics-mobipocket: Makefile buildlink3.mk pkgsrc/graphics/kdegraphics-strigi-analyzer: Makefile pkgsrc/graphics/kdegraphics-thumbnailers: Makefile pkgsrc/graphics/kgamma: Makefile pkgsrc/graphics/kiconthemes: Makefile buildlink3.mk pkgsrc/graphics/kimageformats: Makefile pkgsrc/graphics/kipi-plugins: Makefile buildlink3.mk pkgsrc/graphics/kolourpaint: Makefile pkgsrc/graphics/koverartist: Makefile pkgsrc/graphics/kplotting: Makefile buildlink3.mk pkgsrc/graphics/kqtquickcharts: Makefile pkgsrc/graphics/kqtquickcharts4: Makefile pkgsrc/graphics/krita: Makefile pkgsrc/graphics/kruler: Makefile pkgsrc/graphics/kvantum: Makefile pkgsrc/graphics/lasem: Makefile buildlink3.mk pkgsrc/graphics/libgnomecanvas: Makefile buildlink3.mk pkgsrc/graphics/libgnomecanvasmm: Makefile buildlink3.mk pkgsrc/graphics/libkdcraw: Makefile buildlink3.mk pkgsrc/graphics/libkexiv2: Makefile buildlink3.mk pkgsrc/graphics/libkexiv2-kde4: Makefile pkgsrc/graphics/libkipi: Makefile buildlink3.mk pkgsrc/graphics/libksane: Makefile buildlink3.mk pkgsrc/graphics/librsvg: Makefile buildlink3.mk pkgsrc/graphics/librsvg-c: Makefile pkgsrc/graphics/libscigraphica: Makefile buildlink3.mk pkgsrc/graphics/libwmf: Makefile buildlink3.mk pkgsrc/graphics/luminance-hdr: Makefile pkgsrc/graphics/lximage-qt: Makefile pkgsrc/graphics/netpbm: Makefile pkgsrc/graphics/ocaml-cairo: Makefile pkgsrc/graphics/osg: Makefile buildlink3.mk pkgsrc/graphics/p5-Gnome2-Canvas: Makefile buildlink3.mk pkgsrc/graphics/p5-PerlMagick: Makefile pkgsrc/graphics/pfstools: Makefile pkgsrc/graphics/php-imagick: Makefile pkgsrc/graphics/prison: Makefile buildlink3.mk pkgsrc/graphics/py-gtkglext: Makefile pkgsrc/graphics/rawtherapee: Makefile pkgsrc/graphics/ruby-RMagick: Makefile pkgsrc/graphics/ruby-rsvg2: Makefile pkgsrc/graphics/sane-airscan: Makefile pkgsrc/graphics/sane-frontends: Makefile pkgsrc/graphics/scigraphica: Makefile pkgsrc/graphics/screengrab: Makefile pkgsrc/graphics/shotwell: Makefile pkgsrc/graphics/spectacle: Makefile pkgsrc/graphics/svgpart: Makefile pkgsrc/graphics/tango-icon-theme: Makefile pkgsrc/graphics/tesseract: Makefile pkgsrc/graphics/tuxpaint: Makefile pkgsrc/graphics/ucview: Makefile pkgsrc/graphics/veusz: Makefile pkgsrc/graphics/x11rec: Makefile pkgsrc/graphics/xsane: Makefile pkgsrc/graphics/zbar: Makefile pkgsrc/graphics/zphoto: Makefile pkgsrc/ham/gmfsk: Makefile pkgsrc/ham/gnuradio-channels: Makefile pkgsrc/ham/gnuradio-companion: Makefile pkgsrc/ham/gnuradio-core: Makefile pkgsrc/ham/gnuradio-ctrlport: Makefile pkgsrc/ham/gnuradio-digital: Makefile pkgsrc/ham/gnuradio-doxygen: Makefile pkgsrc/ham/gnuradio-dtv: Makefile pkgsrc/ham/gnuradio-fec: Makefile pkgsrc/ham/gnuradio-network: Makefile pkgsrc/ham/gnuradio-qtgui: Makefile pkgsrc/ham/gnuradio-trellis: Makefile pkgsrc/ham/gnuradio-uhd: Makefile pkgsrc/ham/gnuradio-utils: Makefile pkgsrc/ham/gnuradio-video-sdl: Makefile pkgsrc/ham/gnuradio-vocoder: Makefile pkgsrc/ham/gnuradio-wavelet: Makefile pkgsrc/ham/gnuradio-zeromq: Makefile pkgsrc/inputmethod/fcitx: Makefile pkgsrc/inputmethod/fcitx-qt5: Makefile pkgsrc/inputmethod/fcitx-skk: Makefile pkgsrc/inputmethod/fcitx5-chewing: Makefile pkgsrc/inputmethod/fcitx5-chinese-addons: Makefile pkgsrc/inputmethod/fcitx5-configtool: Makefile pkgsrc/inputmethod/fcitx5-kkc: Makefile pkgsrc/inputmethod/fcitx5-m17n: Makefile pkgsrc/inputmethod/fcitx5-mozc: Makefile Makefile.common pkgsrc/inputmethod/fcitx5-qt: Makefile buildlink3.mk pkgsrc/inputmethod/fcitx5-skk: Makefile pkgsrc/inputmethod/fcitx5-unikey: Makefile pkgsrc/inputmethod/ibus-array: Makefile pkgsrc/inputmethod/ibus-chewing: Makefile pkgsrc/inputmethod/ibus-input-pad: Makefile pkgsrc/inputmethod/ibus-libpinyin: Makefile pkgsrc/inputmethod/ibus-m17n: Makefile pkgsrc/inputmethod/ibus-mozc: Makefile pkgsrc/inputmethod/ibus-pinyin: Makefile pkgsrc/inputmethod/ibus-qt: Makefile pkgsrc/inputmethod/im-ja: Makefile pkgsrc/inputmethod/input-pad: Makefile buildlink3.mk pkgsrc/inputmethod/kimera-tomoe-gtk: Makefile pkgsrc/inputmethod/libchewing: Makefile buildlink3.mk pkgsrc/inputmethod/m17n-im-config: Makefile buildlink3.mk pkgsrc/inputmethod/mozc-elisp: Makefile pkgsrc/inputmethod/mozc-renderer: Makefile pkgsrc/inputmethod/mozc-server: Makefile pkgsrc/inputmethod/mozc-tool: Makefile pkgsrc/inputmethod/py-input-pad: Makefile pkgsrc/inputmethod/scim-chewing: Makefile pkgsrc/inputmethod/scim-m17n: Makefile pkgsrc/inputmethod/scim-tomoe: Makefile pkgsrc/inputmethod/tomoe-gtk: Makefile buildlink3.mk pkgsrc/inputmethod/uim: Makefile pkgsrc/inputmethod/uim-chewing: Makefile pkgsrc/inputmethod/uim-mozc: Makefile pkgsrc/inputmethod/uim-tomoe-gtk: Makefile pkgsrc/lang/coq: Makefile pkgsrc/lang/coreclr: Makefile buildlink3.mk pkgsrc/lang/gjs: Makefile buildlink3.mk pkgsrc/lang/konoha: Makefile pkgsrc/lang/mono: Makefile buildlink3.mk pkgsrc/lang/mono-basic: Makefile pkgsrc/lang/mozjs78: Makefile buildlink3.mk pkgsrc/lang/neko: Makefile pkgsrc/lang/nodejs: Makefile buildlink3.mk pkgsrc/lang/nodejs10: Makefile buildlink3.mk pkgsrc/lang/nodejs12: Makefile buildlink3.mk pkgsrc/lang/parrot: Makefile buildlink3.mk pkgsrc/lang/php56: Makefile buildlink3.mk pkgsrc/lang/php73: Makefile buildlink3.mk pkgsrc/lang/php74: Makefile buildlink3.mk pkgsrc/lang/php80: Makefile buildlink3.mk pkgsrc/lang/racket: Makefile pkgsrc/lang/smalltalk: Makefile pkgsrc/lang/spl: Makefile pkgsrc/lang/tcl: Makefile pkgsrc/lang/zig: Makefile pkgsrc/mail/GNUMail: Makefile pkgsrc/mail/Pantomime: Makefile buildlink3.mk pkgsrc/mail/akonadi: Makefile pkgsrc/mail/balsa: Makefile pkgsrc/mail/bogofilter: Makefile pkgsrc/mail/claws-mail-rssyl: Makefile pkgsrc/mail/claws-mail-vcalendar: Makefile pkgsrc/mail/cone: Makefile pkgsrc/mail/cyrus-imapd24: Makefile pkgsrc/mail/dbmail: Makefile pkgsrc/mail/dovecot2-sqlite: Makefile pkgsrc/mail/dspam: Makefile pkgsrc/mail/evolution: Makefile buildlink3.mk pkgsrc/mail/evolution-data-server: Makefile buildlink3.mk pkgsrc/mail/exim: Makefile pkgsrc/mail/ezmlm-idx: Makefile pkgsrc/mail/greylisting-spp: Makefile pkgsrc/mail/kimap: Makefile buildlink3.mk pkgsrc/mail/kmbox: Makefile buildlink3.mk pkgsrc/mail/kmime: Makefile buildlink3.mk pkgsrc/mail/ksmtp: Makefile buildlink3.mk pkgsrc/mail/mail-notification: Makefile pkgsrc/mail/pfqueue: Makefile pkgsrc/mail/postfix: Makefile pkgsrc/mail/postfix-sqlite: Makefile pkgsrc/mail/pst-utils: Makefile pkgsrc/mail/rspamd: Makefile pkgsrc/math/R-XML: Makefile pkgsrc/math/R-igraph: Makefile pkgsrc/math/analitza: Makefile buildlink3.mk pkgsrc/math/cantor: Makefile pkgsrc/math/cgal: Makefile pkgsrc/math/gcalctool: Makefile pkgsrc/math/genius: Makefile pkgsrc/math/gnome-calculator: Makefile pkgsrc/math/gnumeric112: Makefile pkgsrc/math/kalgebra: Makefile pkgsrc/math/kcalc: Makefile pkgsrc/math/lumina-calculator: Makefile pkgsrc/math/octave: Makefile pkgsrc/math/pspp: Makefile pkgsrc/math/qalculate: Makefile buildlink3.mk pkgsrc/math/qalculate-gtk: Makefile pkgsrc/math/sc-im: Makefile pkgsrc/math/sollya: Makefile pkgsrc/math/speedcrunch: Makefile pkgsrc/math/wxmaxima: Makefile pkgsrc/math/xyconvert: Makefile pkgsrc/meta-pkgs/gnustep: Makefile pkgsrc/meta-pkgs/libdbusmenu: Makefile buildlink3.mk pkgsrc/misc/Addresses: Makefile buildlink3.mk pkgsrc/misc/attica-qt5: Makefile buildlink3.mk pkgsrc/misc/bibletime: Makefile pkgsrc/misc/calibre: Makefile pkgsrc/misc/celestia: Makefile pkgsrc/misc/fbreader: Makefile pkgsrc/misc/goffice0.10: Makefile buildlink3.mk pkgsrc/misc/goffice0.8: Makefile buildlink3.mk pkgsrc/misc/kaccessible: Makefile pkgsrc/misc/kalzium: Makefile pkgsrc/misc/kbruch: Makefile pkgsrc/misc/kcharselect: Makefile pkgsrc/misc/kchmviewer: Makefile pkgsrc/misc/kcontacts: Makefile buildlink3.mk pkgsrc/misc/kdav: Makefile buildlink3.mk pkgsrc/misc/kde-wallpapers4: Makefile pkgsrc/misc/kdeartwork4: Makefile pkgsrc/misc/kdeedu-data: Makefile pkgsrc/misc/kdepim-runtime4: Makefile pkgsrc/misc/kdepim4: Makefile pkgsrc/misc/kdepimlibs4: Makefile buildlink3.mk pkgsrc/misc/kdeplasma-addons4: Makefile pkgsrc/misc/kemoticons: Makefile buildlink3.mk pkgsrc/misc/kgeography: Makefile pkgsrc/misc/khelpcenter: Makefile pkgsrc/misc/kidentitymanagement: Makefile buildlink3.mk pkgsrc/misc/kig: Makefile pkgsrc/misc/kiten: Makefile pkgsrc/misc/klettres: Makefile pkgsrc/misc/kmag: Makefile pkgsrc/misc/kmousetool: Makefile pkgsrc/misc/kmouth: Makefile pkgsrc/misc/kremotecontrol: Makefile pkgsrc/misc/kstars: Makefile pkgsrc/misc/kteatime: Makefile pkgsrc/misc/ktouch: Makefile pkgsrc/misc/kturtle: Makefile pkgsrc/misc/ktux: Makefile pkgsrc/misc/kunitconversion: Makefile buildlink3.mk pkgsrc/misc/kwordquiz: Makefile pkgsrc/misc/libkdeedu: Makefile buildlink3.mk pkgsrc/misc/libkeduvocdocument: Makefile buildlink3.mk pkgsrc/misc/libkvkontakte: Makefile buildlink3.mk pkgsrc/misc/libmateweather: Makefile buildlink3.mk pkgsrc/misc/libreoffice: Makefile pkgsrc/misc/marble: Makefile buildlink3.mk pkgsrc/misc/mate-calc: Makefile pkgsrc/misc/parley: Makefile pkgsrc/misc/rocs: Makefile pkgsrc/misc/stellarium: Makefile pkgsrc/misc/step: Makefile pkgsrc/misc/superkaramba: Makefile pkgsrc/misc/sweeper: Makefile pkgsrc/misc/sword: Makefile buildlink3.mk pkgsrc/misc/usbprog: Makefile pkgsrc/misc/vym: Makefile pkgsrc/misc/xfce4-weather-plugin: Makefile pkgsrc/misc/xygrib: Makefile pkgsrc/misc/yelp3: Makefile pkgsrc/misc/zyGrib: Makefile pkgsrc/multimedia/audiocd-kio: Makefile pkgsrc/multimedia/avidemux: Makefile pkgsrc/multimedia/dragon: Makefile pkgsrc/multimedia/dvdauthor: Makefile pkgsrc/multimedia/ffmpeg2: Makefile pkgsrc/multimedia/ffmpeg3: Makefile pkgsrc/multimedia/ffmpeg4: Makefile pkgsrc/multimedia/ffmpegthumbs: Makefile pkgsrc/multimedia/ffplay2: Makefile pkgsrc/multimedia/ffplay3: Makefile pkgsrc/multimedia/ffplay4: Makefile pkgsrc/multimedia/gmencoder: Makefile pkgsrc/multimedia/gnome-mplayer: Makefile pkgsrc/multimedia/goggles: Makefile pkgsrc/multimedia/gopchop: Makefile pkgsrc/multimedia/gst-plugins0.10-bad: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-base: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-dvdread: Makefile pkgsrc/multimedia/gst-plugins0.10-ffmpeg: Makefile pkgsrc/multimedia/gst-plugins0.10-gnonlin: Makefile pkgsrc/multimedia/gst-plugins0.10-good: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-hal: Makefile pkgsrc/multimedia/gst-plugins0.10-mpeg2dec: Makefile pkgsrc/multimedia/gst-plugins0.10-resindvd: Makefile pkgsrc/multimedia/gst-plugins0.10-ugly: Makefile buildlink3.mk pkgsrc/multimedia/gst-plugins0.10-v4l2: Makefile pkgsrc/multimedia/gst-plugins0.10-vp8: Makefile pkgsrc/multimedia/gst-plugins0.10-x264: Makefile pkgsrc/multimedia/gst-plugins0.10-xvid: Makefile pkgsrc/multimedia/gst-plugins1-base: Makefile pkgsrc/multimedia/gst-plugins1-editing-services: Makefile pkgsrc/multimedia/gstreamer0.10: Makefile buildlink3.mk pkgsrc/multimedia/handbrake: Makefile pkgsrc/multimedia/juk: Makefile pkgsrc/multimedia/kdenlive: Makefile pkgsrc/multimedia/kmix: Makefile pkgsrc/multimedia/kmplayer: Makefile pkgsrc/multimedia/kscd: Makefile pkgsrc/multimedia/libassetml: Makefile buildlink3.mk pkgsrc/multimedia/libbluray: Makefile buildlink3.mk pkgsrc/multimedia/libkcddb: Makefile buildlink3.mk pkgsrc/multimedia/libkcompactdisc: Makefile buildlink3.mk pkgsrc/multimedia/mate-media: Makefile pkgsrc/multimedia/mediatomb: Makefile pkgsrc/multimedia/minidlna: Makefile pkgsrc/multimedia/mkvtoolnix: Makefile pkgsrc/multimedia/mlt: Makefile pkgsrc/multimedia/mplayerthumbs: Makefile pkgsrc/multimedia/mpv: Makefile pkgsrc/multimedia/obs-studio: Makefile pkgsrc/multimedia/ogle: Makefile buildlink3.mk pkgsrc/multimedia/ogle_gui: Makefile pkgsrc/multimedia/olive-editor: Makefile pkgsrc/multimedia/p5-GStreamer: Makefile pkgsrc/multimedia/phonon-qt5: Makefile buildlink3.mk pkgsrc/multimedia/phonon-qt5-backend-gstreamer: Makefile pkgsrc/multimedia/phonon-qt5-backend-vlc: Makefile pkgsrc/multimedia/py-gstreamer0.10: Makefile pkgsrc/multimedia/ssr: Makefile pkgsrc/multimedia/subtitleeditor: Makefile pkgsrc/multimedia/totem: Makefile buildlink3.mk pkgsrc/multimedia/totem-pl-parser: Makefile buildlink3.mk pkgsrc/multimedia/transcode: Makefile pkgsrc/multimedia/vlc: Makefile pkgsrc/multimedia/xine-lib: Makefile pkgsrc/net/aria2: Makefile pkgsrc/net/bind911: Makefile pkgsrc/net/bind916: Makefile pkgsrc/net/cacti: Makefile pkgsrc/net/choqok: Makefile pkgsrc/net/corebird: Makefile pkgsrc/net/dc_gui2: Makefile pkgsrc/net/dctc: Makefile pkgsrc/net/dhcpcd-qt: Makefile pkgsrc/net/filezilla: Makefile pkgsrc/net/flickcurl: Makefile pkgsrc/net/freeDiameter: Makefile pkgsrc/net/freeradius-sqlite3: Makefile pkgsrc/net/gift-gnutella: Makefile pkgsrc/net/gnome-online-accounts: Makefile pkgsrc/net/gnome-vfs-smb: Makefile pkgsrc/net/grilo: Makefile buildlink3.mk pkgsrc/net/grilo-plugins: Makefile pkgsrc/net/gssdp: Makefile buildlink3.mk pkgsrc/net/gssdp12: Makefile buildlink3.mk pkgsrc/net/gst-plugins0.10-mms: Makefile pkgsrc/net/gst-plugins0.10-rtmp: Makefile pkgsrc/net/gst-plugins0.10-soup: Makefile pkgsrc/net/gst-plugins1-libnice: Makefile pkgsrc/net/gst-plugins1-soup: Makefile pkgsrc/net/gtk-gnutella: Makefile pkgsrc/net/gtk-vnc: Makefile pkgsrc/net/gupnp: Makefile buildlink3.mk pkgsrc/net/gupnp-av: Makefile buildlink3.mk pkgsrc/net/gupnp-dlna: Makefile buildlink3.mk pkgsrc/net/gupnp-igd: Makefile buildlink3.mk pkgsrc/net/gupnp-tools: Makefile pkgsrc/net/gupnp12: Makefile buildlink3.mk pkgsrc/net/kdenetwork-filesharing: Makefile pkgsrc/net/kdenetwork-strigi-analyzers: Makefile pkgsrc/net/kdnssd: Makefile buildlink3.mk pkgsrc/net/kdsoap: Makefile buildlink3.mk pkgsrc/net/kget: Makefile pkgsrc/net/kmldonkey: Makefile pkgsrc/net/knewstuff: Makefile buildlink3.mk pkgsrc/net/kopete: Makefile pkgsrc/net/kppp: Makefile pkgsrc/net/krdc: Makefile pkgsrc/net/krfb: Makefile pkgsrc/net/ktorrent: Makefile pkgsrc/net/kxmlrpcclient: Makefile buildlink3.mk pkgsrc/net/libcmis: Makefile pkgsrc/net/libdmapsharing3: Makefile buildlink3.mk pkgsrc/net/libgdata: Makefile buildlink3.mk pkgsrc/net/libgdata0.6: Makefile buildlink3.mk pkgsrc/net/libktorrent: Makefile buildlink3.mk pkgsrc/net/libnice: Makefile buildlink3.mk pkgsrc/net/libsoup: Makefile buildlink3.mk pkgsrc/net/libzrtpcpp: Makefile buildlink3.mk pkgsrc/net/lldpd: Makefile pkgsrc/net/microdc2: Makefile pkgsrc/net/minitube: Makefile pkgsrc/net/mldonkey-gui: Makefile pkgsrc/net/mono-nat: Makefile buildlink3.mk pkgsrc/net/monotorrent: Makefile buildlink3.mk pkgsrc/net/nagstamon: Makefile pkgsrc/net/ncdc: Makefile pkgsrc/net/ncgopher: Makefile pkgsrc/net/nfdump: Makefile pkgsrc/net/ntop: Makefile pkgsrc/net/ntopng: Makefile pkgsrc/net/ocamlnet: Makefile pkgsrc/net/ocsync: Makefile buildlink3.mk pkgsrc/net/openconnect: Makefile pkgsrc/net/owncloudclient: Makefile pkgsrc/net/p5-Net-Z3950-ZOOM: Makefile pkgsrc/net/php-soap: Makefile pkgsrc/net/php-xmlrpc: Makefile pkgsrc/net/php-yaz: Makefile pkgsrc/net/powerdns: Makefile pkgsrc/net/proftpd-sqlite: Makefile pkgsrc/net/qbittorrent: Makefile pkgsrc/net/remmina: Makefile pkgsrc/net/scli: Makefile pkgsrc/net/syncthing-gtk: Makefile pkgsrc/net/tcpflow: Makefile pkgsrc/net/transmission-qt: Makefile pkgsrc/net/unison-snapshot: Makefile pkgsrc/net/unison2.51: Makefile pkgsrc/net/vinagre: Makefile pkgsrc/net/vino: Makefile pkgsrc/net/wireshark: Makefile pkgsrc/net/wpa_gui: Makefile pkgsrc/net/xymon: Makefile pkgsrc/net/yaz: Makefile buildlink3.mk pkgsrc/net/zeroconf-ioslave: Makefile pkgsrc/news/bystand: Makefile pkgsrc/news/newsbeuter: Makefile pkgsrc/news/tin: Makefile pkgsrc/parallel/ganglia-monitor-core: Makefile pkgsrc/parallel/gridscheduler: Makefile pkgsrc/parallel/hwloc: Makefile buildlink3.mk pkgsrc/parallel/mpi-ch: Makefile pkgsrc/parallel/openmpi: Makefile buildlink3.mk pkgsrc/parallel/slurm-wlm: Makefile pkgsrc/pkgtools/gnome-packagekit: Makefile pkgsrc/pkgtools/packagekit: Makefile buildlink3.mk pkgsrc/pkgtools/pkgin: Makefile pkgsrc/print/advi: Makefile pkgsrc/print/atril: Makefile pkgsrc/print/dspdfviewer: Makefile pkgsrc/print/evince3: Makefile pkgsrc/print/foliate: Makefile pkgsrc/print/foomatic4-db-engine: Makefile pkgsrc/print/glabels: Makefile pkgsrc/print/gutenprint-lib: Makefile pkgsrc/print/lumina-pdf: Makefile pkgsrc/print/okular: Makefile pkgsrc/print/poppler-qt5: Makefile pkgsrc/print/qpdfview: Makefile pkgsrc/print/scribus-qt4: Makefile pkgsrc/print/scribus-qt5: Makefile pkgsrc/print/sile: Makefile pkgsrc/print/xetex: Makefile pkgsrc/print/xpdf4: Makefile pkgsrc/print/zathura: Makefile pkgsrc/security/KeePass: Makefile pkgsrc/security/ap-modsecurity2: Makefile pkgsrc/security/clamav: Makefile buildlink3.mk pkgsrc/security/cy2-saml: Makefile pkgsrc/security/cy2-sql: Makefile pkgsrc/security/ecap_clamav_adapter: Makefile pkgsrc/security/fwbuilder: Makefile pkgsrc/security/gnupg2: Makefile pkgsrc/security/gpgmepp: Makefile buildlink3.mk pkgsrc/security/heimdal: Makefile buildlink3.mk pkgsrc/security/honeyd: Makefile pkgsrc/security/hydra: Makefile pkgsrc/security/kauth: Makefile buildlink3.mk pkgsrc/security/kdesu: Makefile buildlink3.mk pkgsrc/security/keepassxc: Makefile pkgsrc/security/kgpg: Makefile pkgsrc/security/kwallet: Makefile buildlink3.mk pkgsrc/security/kwalletmanager: Makefile pkgsrc/security/lasso: Makefile buildlink3.mk pkgsrc/security/lastpass-cli: Makefile pkgsrc/security/libfprint: Makefile pkgsrc/security/libfwbuilder: Makefile buildlink3.mk pkgsrc/security/libpreludedb-sqlite3: Makefile pkgsrc/security/lxqt-openssh-askpass: Makefile pkgsrc/security/lxqt-policykit: Makefile pkgsrc/security/lxqt-sudo: Makefile pkgsrc/security/oath-toolkit: Makefile pkgsrc/security/opendnssec: Makefile pkgsrc/security/opendnssec2: Makefile pkgsrc/security/opensc: Makefile pkgsrc/security/pam-saml: Makefile pkgsrc/security/pinentry-qt5: Makefile pkgsrc/security/policykit: Makefile pkgsrc/security/polkit: Makefile pkgsrc/security/polkit-qt5: Makefile buildlink3.mk pkgsrc/security/prelude-manager: Makefile pkgsrc/security/py-lasso: Makefile pkgsrc/security/py-xmlsec: Makefile pkgsrc/security/qca2-qt5: Makefile buildlink3.mk pkgsrc/security/qca2-qt5-gnupg: Makefile pkgsrc/security/qca2-qt5-ossl: Makefile pkgsrc/security/qgpgme: Makefile buildlink3.mk pkgsrc/security/qore-xmlsec-module: Makefile pkgsrc/security/qt5-qtkeychain: Makefile pkgsrc/security/seahorse: Makefile pkgsrc/security/softhsm: Makefile buildlink3.mk pkgsrc/security/softhsm2: Makefile buildlink3.mk pkgsrc/security/tor-browser: Makefile pkgsrc/security/xca: Makefile pkgsrc/security/xmlsec1: Makefile buildlink3.mk pkgsrc/sysutils/augeas: Makefile buildlink3.mk pkgsrc/sysutils/bacula: Makefile pkgsrc/sysutils/bacula-qt5-console: Makefile pkgsrc/sysutils/bacula-tray-monitor-qt5: Makefile pkgsrc/sysutils/baloo: Makefile pkgsrc/sysutils/baloo-widgets: Makefile buildlink3.mk pkgsrc/sysutils/baloo5: Makefile buildlink3.mk pkgsrc/sysutils/bareos: Makefile pkgsrc/sysutils/brasero: Makefile pkgsrc/sysutils/burn: Makefile pkgsrc/sysutils/caja: Makefile pkgsrc/sysutils/caja-extensions: Makefile pkgsrc/sysutils/cfengine3: Makefile pkgsrc/sysutils/collectd-curl: Makefile pkgsrc/sysutils/collectd-mongodb: Makefile pkgsrc/sysutils/collectd-rrdtool: Makefile pkgsrc/sysutils/collectd-virt: Makefile pkgsrc/sysutils/conky: Makefile pkgsrc/sysutils/dbus-sharp: Makefile buildlink3.mk pkgsrc/sysutils/dbus-sharp-glib: Makefile buildlink3.mk pkgsrc/sysutils/dolphin: Makefile buildlink3.mk pkgsrc/sysutils/facette: Makefile pkgsrc/sysutils/filelight: Makefile pkgsrc/sysutils/gcdmaster: Makefile pkgsrc/sysutils/gdmap: Makefile pkgsrc/sysutils/gfm: Makefile pkgsrc/sysutils/gnome-characters: Makefile pkgsrc/sysutils/gnome-control-center: Makefile pkgsrc/sysutils/gnome-nds-thumbnailer: Makefile pkgsrc/sysutils/gnome-settings-daemon: Makefile pkgsrc/sysutils/gnome-tracker: Makefile buildlink3.mk pkgsrc/sysutils/gnome-tracker-miners: Makefile pkgsrc/sysutils/gnome-vfs: Makefile buildlink3.mk pkgsrc/sysutils/gnome-vfsmm: Makefile buildlink3.mk pkgsrc/sysutils/gst-plugins0.10-gnomevfs: Makefile pkgsrc/sysutils/gvfs: Makefile pkgsrc/sysutils/gworkspace: Makefile pkgsrc/sysutils/hivex: Makefile pkgsrc/sysutils/k3b: Makefile pkgsrc/sysutils/kcron: Makefile pkgsrc/sysutils/kdbusaddons: Makefile buildlink3.mk pkgsrc/sysutils/kdf: Makefile pkgsrc/sysutils/kfilemetadata: Makefile pkgsrc/sysutils/kfilemetadata5: Makefile pkgsrc/sysutils/kfloppy: Makefile pkgsrc/sysutils/krusader: Makefile pkgsrc/sysutils/ksystemlog: Makefile pkgsrc/sysutils/kuser: Makefile pkgsrc/sysutils/libbaloo4: Makefile pkgsrc/sysutils/libdevkit-gobject: Makefile pkgsrc/sysutils/lnav: Makefile pkgsrc/sysutils/lxqt-powermanagement: Makefile pkgsrc/sysutils/mate-system-monitor: Makefile pkgsrc/sysutils/nautilus: Makefile pkgsrc/sysutils/ndesk-dbus: Makefile pkgsrc/sysutils/ndesk-dbus-glib: Makefile buildlink3.mk pkgsrc/sysutils/open-vm-tools: Makefile pkgsrc/sysutils/openxenmanager: Makefile pkgsrc/sysutils/p5-Config-Augeas: Makefile pkgsrc/sysutils/p5-Gnome2-VFS: Makefile buildlink3.mk pkgsrc/sysutils/pcmanfm-qt: Makefile pkgsrc/sysutils/py-augeas: Makefile pkgsrc/sysutils/py-notify-python: Makefile buildlink3.mk pkgsrc/sysutils/qdirstat: Makefile pkgsrc/sysutils/rox: Makefile pkgsrc/sysutils/screentest: Makefile pkgsrc/sysutils/solid: Makefile buildlink3.mk pkgsrc/sysutils/strigi: Makefile buildlink3.mk pkgsrc/sysutils/syslog-ng-mongodb: Makefile pkgsrc/sysutils/tarsnap-gui: Makefile pkgsrc/sysutils/vcdimager: Makefile buildlink3.mk pkgsrc/sysutils/virt-manager: Makefile pkgsrc/sysutils/virt-viewer: Makefile pkgsrc/sysutils/xfce4-gvfs-mount-plugin: Makefile pkgsrc/sysutils/xfce4-quicklauncher-plugin: Makefile pkgsrc/sysutils/xfce4-thunar-vcs: Makefile pkgsrc/sysutils/xfce4-xkb-plugin: Makefile pkgsrc/sysutils/zabbix: Makefile pkgsrc/sysutils/zabbix50-agent: Makefile pkgsrc/sysutils/zabbix50-proxy: Makefile pkgsrc/sysutils/zabbix50-server: Makefile pkgsrc/textproc/OdfConverter: Makefile pkgsrc/textproc/R-stringi: Makefile pkgsrc/textproc/R-xml2: Makefile pkgsrc/textproc/asciidoc: Makefile pkgsrc/textproc/bat: Makefile pkgsrc/textproc/csharp-xapian: Makefile pkgsrc/textproc/dikt: Makefile pkgsrc/textproc/dwdiff: Makefile pkgsrc/textproc/ebook-tools: Makefile buildlink3.mk pkgsrc/textproc/gdome2: Makefile buildlink3.mk pkgsrc/textproc/gnome-doc-utils: Makefile pkgsrc/textproc/gtk-doc: Makefile pkgsrc/textproc/hfstospell: Makefile buildlink3.mk pkgsrc/textproc/highlight: Makefile pkgsrc/textproc/icu: buildlink3.mk pkgsrc/textproc/kcodecs: Makefile buildlink3.mk pkgsrc/textproc/kcompletion: Makefile buildlink3.mk pkgsrc/textproc/kpimtextedit: Makefile buildlink3.mk pkgsrc/textproc/libcroco: Makefile buildlink3.mk pkgsrc/textproc/liblrdf: Makefile buildlink3.mk pkgsrc/textproc/libplist: Makefile buildlink3.mk pkgsrc/textproc/libxml++: Makefile buildlink3.mk pkgsrc/textproc/libxml2: Makefile buildlink3.mk pkgsrc/textproc/libxslt: Makefile buildlink3.mk pkgsrc/textproc/ots: Makefile pkgsrc/textproc/p5-Alien-Libxml2: Makefile pkgsrc/textproc/p5-XML-LibXML: Makefile pkgsrc/textproc/p5-XML-LibXSLT: Makefile pkgsrc/textproc/php-intl: Makefile pkgsrc/textproc/php-wddx: Makefile pkgsrc/textproc/php-xsl: Makefile pkgsrc/textproc/po4a: Makefile pkgsrc/textproc/py-ICU: Makefile pkgsrc/textproc/py-html5-parser: Makefile pkgsrc/textproc/py-libxml2: Makefile pkgsrc/textproc/py-libxslt: Makefile pkgsrc/textproc/py-lxml: Makefile pkgsrc/textproc/qore-xml-module: Makefile pkgsrc/textproc/raptor: Makefile buildlink3.mk pkgsrc/textproc/raptor2: Makefile buildlink3.mk pkgsrc/textproc/rarian: Makefile pkgsrc/textproc/rasqal: Makefile buildlink3.mk pkgsrc/textproc/redland: Makefile buildlink3.mk pkgsrc/textproc/ruby-libxml: Makefile pkgsrc/textproc/ruby-nokogiri: Makefile pkgsrc/textproc/ruby-xslt: Makefile pkgsrc/textproc/sonnet: Makefile buildlink3.mk pkgsrc/textproc/soprano: Makefile pkgsrc/textproc/split-thai: Makefile pkgsrc/textproc/sublib: Makefile buildlink3.mk pkgsrc/textproc/syntax-highlighting: Makefile buildlink3.mk pkgsrc/textproc/upmendex: Makefile pkgsrc/textproc/xml2doc: Makefile pkgsrc/textproc/xmlstarlet: Makefile pkgsrc/textproc/xmlto: Makefile pkgsrc/textproc/yelp-tools: Makefile pkgsrc/time/fet: Makefile pkgsrc/time/gchore: Makefile pkgsrc/time/gnome-calendar: Makefile pkgsrc/time/kcalendarcore: Makefile buildlink3.mk pkgsrc/time/kcalutils: Makefile buildlink3.mk pkgsrc/time/kholidays: Makefile buildlink3.mk pkgsrc/time/ktimer: Makefile pkgsrc/time/libical: Makefile buildlink3.mk pkgsrc/time/ntpsec: Makefile pkgsrc/time/rsibreak: Makefile pkgsrc/time/xfce4-orage: Makefile pkgsrc/wm/ccsm: Makefile pkgsrc/wm/compiz: Makefile buildlink3.mk pkgsrc/wm/compiz-fusion-plugins-extra: Makefile pkgsrc/wm/compiz-fusion-plugins-main: Makefile buildlink3.mk pkgsrc/wm/e16menuedit2: Makefile pkgsrc/wm/fvwm: Makefile pkgsrc/wm/fvwm3: Makefile pkgsrc/wm/jwm: Makefile pkgsrc/wm/obconf: Makefile pkgsrc/wm/obconf-qt: Makefile pkgsrc/wm/openbox: Makefile buildlink3.mk pkgsrc/wm/wbar: Makefile pkgsrc/www/SOGo: Makefile pkgsrc/www/SOGo4: Makefile pkgsrc/www/ap-auth-mellon: Makefile pkgsrc/www/ap-authnz-crowd: Makefile pkgsrc/www/ap-mono: Makefile pkgsrc/www/ap-php: Makefile pkgsrc/www/ap2-auth-mellon: Makefile pkgsrc/www/ap2-subversion: Makefile pkgsrc/www/apache24: Makefile pkgsrc/www/badwolf: Makefile pkgsrc/www/bkedit: Makefile pkgsrc/www/bluefish: Makefile pkgsrc/www/c-icap-modules: Makefile pkgsrc/www/cppcms: Makefile pkgsrc/www/deforaos-surfer: Makefile pkgsrc/www/epiphany: Makefile pkgsrc/www/firefox: Makefile pkgsrc/www/firefox52: Makefile pkgsrc/www/firefox68: Makefile pkgsrc/www/firefox78: Makefile pkgsrc/www/gitea: Makefile pkgsrc/www/kannel: Makefile pkgsrc/www/kdewebkit: Makefile buildlink3.mk pkgsrc/www/khtml: Makefile buildlink3.mk pkgsrc/www/kimagemapeditor: Makefile pkgsrc/www/kjs: Makefile buildlink3.mk pkgsrc/www/kjsembed: Makefile buildlink3.mk pkgsrc/www/lariza: Makefile pkgsrc/www/libgtkhtml: Makefile buildlink3.mk pkgsrc/www/libmediawiki: Makefile buildlink3.mk pkgsrc/www/librest07: Makefile buildlink3.mk pkgsrc/www/liferea: Makefile pkgsrc/www/lighttpd: Makefile pkgsrc/www/links-gui: Makefile pkgsrc/www/luakit: Makefile pkgsrc/www/midori: Makefile pkgsrc/www/mono-xsp: Makefile buildlink3.mk pkgsrc/www/nghttp2: Makefile pkgsrc/www/nghttp2-tools: Makefile pkgsrc/www/nginx: Makefile pkgsrc/www/otter-browser: Makefile pkgsrc/www/php-fpm: Makefile pkgsrc/www/php-http3: Makefile pkgsrc/www/phraseanet-indexer: Makefile pkgsrc/www/qutebrowser: Makefile pkgsrc/www/rekonq: Makefile pkgsrc/www/seamonkey: Makefile pkgsrc/www/sitecopy: Makefile pkgsrc/www/spdylay: Makefile buildlink3.mk pkgsrc/www/swish-e: Makefile pkgsrc/www/syndication: Makefile buildlink3.mk pkgsrc/www/uhttpmock: Makefile buildlink3.mk pkgsrc/www/vimb: Makefile pkgsrc/www/webkit-gtk: Makefile buildlink3.mk pkgsrc/www/webkit24-gtk: Makefile buildlink3.mk pkgsrc/www/webkit24-gtk3: Makefile buildlink3.mk pkgsrc/x11/avant-window-navigator: Makefile pkgsrc/x11/caribou: Makefile pkgsrc/x11/clisp-gtk2: Makefile pkgsrc/x11/deforaos-integration: Makefile pkgsrc/x11/devilspie: Makefile pkgsrc/x11/eekboard: Makefile buildlink3.mk pkgsrc/x11/frameworkintegration: Makefile buildlink3.mk pkgsrc/x11/gdm: Makefile pkgsrc/x11/gnome-desktop: Makefile pkgsrc/x11/gnome-session: Makefile pkgsrc/x11/gnome-shell: Makefile pkgsrc/x11/gnome-themes-extras: Makefile pkgsrc/x11/gnustep-back: Makefile buildlink3.mk pkgsrc/x11/gnustep-gui: Makefile buildlink3.mk pkgsrc/x11/gnustep-preferences: Makefile pkgsrc/x11/gtk-sharp: Makefile pkgsrc/x11/gtk-sharp3: Makefile pkgsrc/x11/gtkmm3: Makefile buildlink3.mk pkgsrc/x11/gtksourceview2: Makefile buildlink3.mk pkgsrc/x11/gtksourceview3: Makefile buildlink3.mk pkgsrc/x11/gtksourceview4: Makefile buildlink3.mk pkgsrc/x11/gtksourceviewmm: Makefile buildlink3.mk pkgsrc/x11/kactivities: Makefile buildlink3.mk pkgsrc/x11/kactivities-stats: Makefile buildlink3.mk pkgsrc/x11/kactivities5: Makefile buildlink3.mk pkgsrc/x11/kconfigwidgets: Makefile buildlink3.mk pkgsrc/x11/kde-baseapps4: Makefile pkgsrc/x11/kde-runtime4: Makefile buildlink3.mk pkgsrc/x11/kde-workspace4: Makefile buildlink3.mk pkgsrc/x11/kded: Makefile pkgsrc/x11/kdelibs4: Makefile buildlink3.mk pkgsrc/x11/kdelibs4support: Makefile buildlink3.mk pkgsrc/x11/kdesignerplugin: Makefile pkgsrc/x11/kglobalaccel: Makefile buildlink3.mk pkgsrc/x11/kguiaddons: Makefile buildlink3.mk pkgsrc/x11/kinit: Makefile pkgsrc/x11/kirigami2: Makefile buildlink3.mk pkgsrc/x11/kitemviews: Makefile buildlink3.mk pkgsrc/x11/kjobwidgets: Makefile buildlink3.mk pkgsrc/x11/konsole: Makefile pkgsrc/x11/ktextwidgets: Makefile buildlink3.mk pkgsrc/x11/kwidgetsaddons: Makefile buildlink3.mk pkgsrc/x11/kwindowsystem: Makefile buildlink3.mk pkgsrc/x11/kxmlgui: Makefile buildlink3.mk pkgsrc/x11/libdesktop-agnostic: Makefile buildlink3.mk pkgsrc/x11/libfm-qt: Makefile buildlink3.mk pkgsrc/x11/libgnomekbd: Makefile buildlink3.mk pkgsrc/x11/libkactivities4: Makefile buildlink3.mk pkgsrc/x11/libkscreen: Makefile buildlink3.mk pkgsrc/x11/liblxqt: Makefile buildlink3.mk pkgsrc/x11/libmatekbd: Makefile buildlink3.mk pkgsrc/x11/libqtxdg: Makefile buildlink3.mk pkgsrc/x11/libxfce4gui: Makefile buildlink3.mk pkgsrc/x11/libxkbcommon: Makefile pkgsrc/x11/libxklavier: Makefile buildlink3.mk pkgsrc/x11/lxqt-about: Makefile pkgsrc/x11/lxqt-admin: Makefile pkgsrc/x11/lxqt-config: Makefile pkgsrc/x11/lxqt-globalkeys: Makefile buildlink3.mk pkgsrc/x11/lxqt-notificationd: Makefile pkgsrc/x11/lxqt-panel: Makefile pkgsrc/x11/lxqt-qtplugin: Makefile pkgsrc/x11/lxqt-runner: Makefile pkgsrc/x11/lxqt-session: Makefile pkgsrc/x11/maim: Makefile pkgsrc/x11/mate-applets: Makefile pkgsrc/x11/mate-control-center: Makefile buildlink3.mk pkgsrc/x11/mate-panel: Makefile pkgsrc/x11/mate-screensaver: Makefile pkgsrc/x11/mate-settings-daemon: Makefile buildlink3.mk pkgsrc/x11/mlterm: Makefile pkgsrc/x11/ocaml-lablgtk: Makefile buildlink3.mk pkgsrc/x11/ocaml-lablgtk3: Makefile buildlink3.mk pkgsrc/x11/plasma-framework: Makefile buildlink3.mk pkgsrc/x11/py-gnome2: Makefile buildlink3.mk pkgsrc/x11/py-gnome2-extras: Makefile buildlink3.mk pkgsrc/x11/py-gtk2: Makefile buildlink3.mk pkgsrc/x11/py-gtksourceview: Makefile pkgsrc/x11/py-keybinder: Makefile buildlink3.mk pkgsrc/x11/py-kiwi: Makefile pkgsrc/x11/py-qt5: Makefile pkgsrc/x11/py-qt5-qscintilla: Makefile buildlink3.mk pkgsrc/x11/py-qwt-qt5: Makefile pkgsrc/x11/py-vte: Makefile pkgsrc/x11/qqc2-desktop-style: Makefile pkgsrc/x11/qt4-sqlite3: Makefile pkgsrc/x11/qt5-mysql: Makefile buildlink3.mk pkgsrc/x11/qt5-odbc: Makefile buildlink3.mk pkgsrc/x11/qt5-psql: Makefile buildlink3.mk pkgsrc/x11/qt5-qscintilla: Makefile buildlink3.mk pkgsrc/x11/qt5-qtbase: Makefile buildlink3.mk pkgsrc/x11/qt5-qtcharts: Makefile buildlink3.mk pkgsrc/x11/qt5-qtconnectivity: Makefile buildlink3.mk pkgsrc/x11/qt5-qtdeclarative: Makefile buildlink3.mk pkgsrc/x11/qt5-qtdoc: Makefile pkgsrc/x11/qt5-qtgraphicaleffects: Makefile pkgsrc/x11/qt5-qtimageformats: Makefile buildlink3.mk pkgsrc/x11/qt5-qtlocation: Makefile buildlink3.mk pkgsrc/x11/qt5-qtmacextras: Makefile buildlink3.mk pkgsrc/x11/qt5-qtmultimedia: Makefile buildlink3.mk pkgsrc/x11/qt5-qtnetworkauth: Makefile buildlink3.mk pkgsrc/x11/qt5-qtquickcontrols: Makefile buildlink3.mk pkgsrc/x11/qt5-qtquickcontrols2: Makefile buildlink3.mk pkgsrc/x11/qt5-qtscript: Makefile buildlink3.mk pkgsrc/x11/qt5-qtscxml: Makefile buildlink3.mk pkgsrc/x11/qt5-qtsensors: Makefile buildlink3.mk pkgsrc/x11/qt5-qtserialport: Makefile buildlink3.mk pkgsrc/x11/qt5-qtspeech: Makefile buildlink3.mk pkgsrc/x11/qt5-qtsvg: Makefile buildlink3.mk pkgsrc/x11/qt5-qttools: Makefile buildlink3.mk pkgsrc/x11/qt5-qttranslations: Makefile pkgsrc/x11/qt5-qtvirtualkeyboard: Makefile buildlink3.mk pkgsrc/x11/qt5-qtwayland: Makefile pkgsrc/x11/qt5-qtwebchannel: Makefile buildlink3.mk pkgsrc/x11/qt5-qtwebkit: Makefile buildlink3.mk pkgsrc/x11/qt5-qtwebsockets: Makefile buildlink3.mk pkgsrc/x11/qt5-qtx11extras: Makefile buildlink3.mk pkgsrc/x11/qt5-qtxmlpatterns: Makefile buildlink3.mk pkgsrc/x11/qterminal: Makefile pkgsrc/x11/qtermwidget: Makefile pkgsrc/x11/qwt6-qt5: Makefile buildlink3.mk pkgsrc/x11/rofi: Makefile pkgsrc/x11/rox-session: Makefile pkgsrc/x11/ruby-gtksourceview2: Makefile pkgsrc/x11/ruby-gtksourceview3: Makefile pkgsrc/x11/slop: Makefile pkgsrc/x11/tint2: Makefile pkgsrc/x11/vte3: Makefile pkgsrc/x11/wxGTK28: Makefile pkgsrc/x11/xcb-proto: Makefile pkgsrc/x11/xfce4-desktop: Makefile pkgsrc/x11/xfce4-notes-plugin: Makefile pkgsrc/x11/xfce4-screenshooter: Makefile pkgsrc/x11/xfce4-session: Makefile pkgsrc/x11/xfce4-settings: Makefile pkgsrc/x11/xfce4-tumbler: Makefile pkgsrc/x11/xfce4-wmdock-plugin: Makefile pkgsrc/x11/xlockmore: Makefile pkgsrc/x11/xpad: Makefile pkgsrc/x11/xscreensaver: Makefile buildlink3.mk pkgsrc/x11/xscreensaver-demo: Makefile pkgsrc/x11/xsnow: Makefile pkgsrc/x11/xvidcap: Makefile Log Message: revbump for textproc/icu --- Module Name: pkgsrc Committed By: taca Date: Thu Apr 29 05:54:13 UTC 2021 Modified Files: pkgsrc/net/bind911: Makefile distinfo Log Message: net/bind911: update to 9.11.31 Security release. --- 9.11.31 released --- 5621. [bug] Due to a backporting mistake in change 5609, named binaries built against a Kerberos/GSSAPI library whose header files did not define the GSS_SPNEGO_MECHANISM preprocessor macro were not able to start if their configuration included the "tkey-gssapi-credential" option. This has been fixed. [GL #2634] --- 9.11.30 released --- 5617. [security] A specially crafted GSS-TSIG query could cause a buffer overflow in the ISC implementation of SPNEGO. (CVE-2021-25216) [GL #2604] 5616. [security] named crashed when a DNAME record placed in the ANSWER section during DNAME chasing turned out to be the final answer to a client query. (CVE-2021-25215) [GL #2540] 5615. [security] Insufficient IXFR checks could result in named serving a zone without an SOA record at the apex, leading to a RUNTIME_CHECK assertion failure when the zone was subsequently refreshed. This has been fixed by adding an owner name check for all SOA records which are included in a zone transfer. (CVE-2021-25214) [GL #2467] 5614. [bug] Ensure all resources are properly cleaned up when a call to gss_accept_sec_context() fails. [GL #2620] 5609. [func] The ISC implementation of SPNEGO was removed from BIND 9 source code. It was no longer necessary as all major contemporary Kerberos/GSSAPI libraries include support for SPNEGO. [GL #2607]
2021-04-30Pullup ticket #6452 - requested by niabsiegert2-12/+17
chat/irssi-xmpp: build fix Revisions pulled up: - chat/irssi-xmpp/Makefile 1.19 - chat/irssi-xmpp/distinfo 1.23 --- Module Name: pkgsrc Committed By: nia Date: Thu Apr 29 07:55:07 UTC 2021 Modified Files: pkgsrc/chat/irssi-xmpp: Makefile distinfo Log Message: irssi-xmpp: fix fetch the original download site now redirects to an autogenerated github tag tarball, which means the checksums no longer match. poked by wiz.
2021-04-27Pullup ticket #6451bsiegert1-1/+4
2021-04-27Pullup ticket #6451 - requested by mayabsiegert1-1/+4
net/GeoIP: NetBSD build fix Revisions pulled up: - net/GeoIP/Makefile 1.33 --- Module Name: pkgsrc Committed By: maya Date: Mon Apr 19 07:22:30 UTC 2021 Modified Files: pkgsrc/net/GeoIP: Makefile Log Message: GeoIP: force-fail gethostbyname_r configure check. NetBSD has this not-like-linux libc symbol and tries to hide it, but not well enough that autoconf fails to find it. Bump PKGREVISION for binary change. >From Stefan Schaeckeler in PR pkg/56116
2021-04-25Pullup tickets up to #6450bsiegert1-1/+19
2021-04-25Pullup ticket #6448 - requested by niabsiegert2-371/+371
www/firefox78-l10n: dependent update Revisions pulled up: - www/firefox78-l10n/Makefile 1.12 - www/firefox78-l10n/distinfo 1.12 --- Module Name: pkgsrc Committed By: nia Date: Mon Apr 19 20:07:41 UTC 2021 Modified Files: pkgsrc/www/firefox78-l10n: Makefile distinfo Log Message: firefox78-l10n: sync with firefox78
2021-04-25Pullup ticket #6447 - requested by niabsiegert2-7/+7
www/firefox78: security fix Revisions pulled up: - www/firefox78/Makefile 1.25 - www/firefox78/distinfo 1.15 --- Module Name: pkgsrc Committed By: nia Date: Mon Apr 19 20:01:06 UTC 2021 Modified Files: pkgsrc/www/firefox78: Makefile distinfo Log Message: firefox78: update to 78.10.0 security fixes: https://www.mozilla.org/en-US/security/advisories/mfsa2021-15/
2021-04-24Pullup ticket #6450 - requested by niabsiegert9-46/+374
chat/irssi: security fix Revisions pulled up: - chat/irssi-icb/Makefile 1.47 - chat/irssi-icb/distinfo 1.39 - chat/irssi-xmpp/Makefile 1.18 - chat/irssi-xmpp/distinfo 1.22 - chat/irssi/Makefile 1.101 - chat/irssi/Makefile.common 1.33 - chat/irssi/distinfo 1.53 - chat/irssi/patches/patch-src_fe-text_term-terminfo.c deleted - chat/irssi/patches/patch-src_fe-text_terminfo-core.c 1.1 --- Module Name: pkgsrc Committed By: nia Date: Sat Apr 24 08:32:00 UTC 2021 Modified Files: pkgsrc/chat/irssi: Makefile Makefile.common distinfo pkgsrc/chat/irssi-icb: Makefile distinfo pkgsrc/chat/irssi-xmpp: Makefile distinfo Added Files: pkgsrc/chat/irssi/patches: patch-src_fe-text_terminfo-core.c Removed Files: pkgsrc/chat/irssi/patches: patch-src_fe-text_term-terminfo.c Log Message: irssi: update to 1.2.3 v1.2.3 2021-04-11 The Irssi team <staff@irssi.org> - Fix the compilation of utf8proc (#1021) - Fix wrong call to free. By Zero King (#1076) - Fix a colour reset in true colour themes when encountering mIRC colours (#1059) - Fix memory leak on malformed CAP requests (#1120) - Fix an erroneous free of SASL data. Credit to Oss-Fuzz (#1128, #1130) - Re-set the TLS flag when reconnecting (#1027, #1134) - Fix the scrollback getting stuck after /clear (#1115, #1136) - Fix the input of Ctrl+C as the first character (#1153, #1154) - Fix crash on quit during unloading of modules on certain platforms (#1167) - Fix Irssi freezing input after Ctrl+Space on GLib >2.62 (#1180, #1183) - Fix layout of IDCHANs. By Lauri Tirkkonen (#1197) - Fix crash when server got reconnected before it was properly connected (#1210, #1211) - Fix multiple identical active caps (#1249) - Minor help corrections (#1156, #1213, #1214, #1255) - Remove erroneous colour in the colorless theme. Reported and fixed by Nutchanon Wetchasit (#1220, #1221) - Fix invalid bounds calculation when editing the text entry. Found and fixed by Sergey Valentey (#1269) - Fix passing of negative size in buffer writes. Found and fixed by Sergey Valentey (#1270) - Fix Irssi freezing on slow hardware and fast DCC transfers (#159, #1271) - Fix compilation on Solaris (#1291) - Fix null pointer dereference when receiving broken JOIN record. Credit to Oss-Fuzz (#1292) - Fix crash on /connect to some sockets (#1239, #1298) - Fix Irssi rendering on Apple ARM. By Misty De Méo (#1267, #1268, #1290) - Fix crash on /lastlog with broken lines (#1281, #1299) - Fix memory leak when receiving bogus SASL authentication data. Found and fixed by Sergey Valentey (#1293)
2021-04-24Pullup ticket #6449 - requested by tsutsuibsiegert1-1/+3
devel/glib2: fix for PR pkg/56114 (via patch)
2021-04-24Pullup ticket #6446 - requested by gutteridgebsiegert1-1/+9
lang/rust: NetBSD/i386 build fix Revisions pulled up: - lang/rust/Makefile 1.228-1.229 --- Module Name: pkgsrc Committed By: gutteridge Date: Thu Apr 15 00:55:45 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: rust: restore NetBSD i386 bootstrap workaround The current i386 bootstrap is built for NetBSD 8.x, and so is linked against libstdc++.so.8. NetBSD 9.x still requires compat80 for it to run. This isn't a complete workaround, as builds still fail in a sandboxed environment that doesn't have compat80 installed outside it. Dealing with that would require another workaround somewhat like the one used for ghc*, but a little different. --- Module Name: pkgsrc Committed By: gutteridge Date: Fri Apr 16 01:14:37 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: rust: the i386 bootstrap workaround is really a BUILD_DEPENDS
2021-04-24Pullup ticket #6443 (second part) - requested by tacabsiegert1-2/+2
lang/ruby: build fix Revisions pulled up: - lang/ruby/rubyversion.mk 1.231 --- Module Name: pkgsrc Committed By: taca Date: Mon Apr 12 14:39:28 UTC 2021 Modified Files: pkgsrc/lang/ruby: rubyversion.mk Log Message: lang/ruby/rubyversion.mk: require quote Require proper quote for previous addition to MAKEFLAGS.
2021-04-15Pullup tickets up to #6445bsiegert1-1/+19
2021-04-15Pullup ticket #6445 - requested by tacabsiegert6-57/+79
lang/ruby30-base: security fix Revisions pulled up: - lang/ruby/Makefile 1.69 - lang/ruby/rubyversion.mk 1.230 - lang/ruby30-base/ALTERNATIVES 1.2 - lang/ruby30-base/Makefile 1.2 - lang/ruby30-base/PLIST 1.2 - lang/ruby30-base/distinfo 1.2 --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 12:36:28 UTC 2021 Modified Files: pkgsrc/lang/ruby: rubyversion.mk pkgsrc/lang/ruby30-base: ALTERNATIVES Makefile PLIST distinfo Log Message: lang/ruby30-base: update to 3.0.1 Ruby 3.0.1 Released (2021-04-05) Ruby 3.0.1 has been released. This release includes security fixes. Please check the topics below for details. * CVE-2021-28965: XML round-trip vulnerability in REXML * CVE-2021-28966: Path traversal in Tempfile on Windows See the commit logs for details. --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 12:43:17 UTC 2021 Modified Files: pkgsrc/lang/ruby: Makefile Log Message: lang/ruby: reset PKGREVISION Reset PKGREVISION with updates of all ruby{26,27,30}.
2021-04-15Pullup ticket #6444 - requested by tacabsiegert6-44/+40
lang/ruby27-base: security fix, bugfix Revisions pulled up: - lang/ruby/rubyversion.mk 1.229 - lang/ruby27-base/ALTERNATIVES 1.2 - lang/ruby27-base/PLIST 1.4 - lang/ruby27-base/distinfo 1.4 - lang/ruby27-base/patches/patch-configure 1.2 - lang/ruby27-base/patches/patch-lib_rubygems.rb 1.2 --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 12:32:03 UTC 2021 Modified Files: pkgsrc/lang/ruby: rubyversion.mk pkgsrc/lang/ruby27-base: PLIST distinfo pkgsrc/lang/ruby27-base/patches: patch-configure patch-lib_rubygems.rb Log Message: lang/ruby27-base: update to 2.7.3 Ruby 2.7.3 Released (2021-04-05) This release includes security fixes. Please check the topics below for details. * CVE-2021-28965: XML round-trip vulnerability in REXML * CVE-2021-28966: Path traversal in Tempfile on Windows See the commit logs for details. --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 13:00:38 UTC 2021 Modified Files: pkgsrc/lang/ruby27-base: ALTERNATIVES Log Message: lang/ruby27-base: fix ALTERNATIVES file
2021-04-15Pullup ticket #6443 - requested by tacabsiegert7-72/+33
lang/ruby26-base: security fix, bugfix Revisions pulled up: - lang/ruby/rubyversion.mk 1.227-1.228 - lang/ruby26-base/ALTERNATIVES 1.2 - lang/ruby26-base/Makefile 1.13 - lang/ruby26-base/PLIST 1.5 - lang/ruby26-base/distinfo 1.10 - lang/ruby26-base/patches/patch-configure 1.3 - lang/ruby26-base/patches/patch-lib_webrick_httprequest.rb deleted --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 12:16:20 UTC 2021 Modified Files: pkgsrc/lang/ruby: rubyversion.mk Log Message: lang/ruby/rubyversion.mk: pass RUBY_RAILS_ACCEPTED Pass RUBY_RAILS_ACCEPTED to MAKEFLAGS unless it isn't empty. --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 12:28:38 UTC 2021 Modified Files: pkgsrc/lang/ruby: rubyversion.mk pkgsrc/lang/ruby26-base: Makefile PLIST distinfo pkgsrc/lang/ruby26-base/patches: patch-configure Removed Files: pkgsrc/lang/ruby26-base/patches: patch-lib_webrick_httprequest.rb Log Message: lang/ruby26-base: update to 2.6.7 Ruby 2.6.7 Released (2021-04-05) This release includes security fixes. Please check the topics below for details. * CVE-2020-25613: Potential HTTP Request Smuggling Vulnerability in WEBrick * CVE-2021-28965: XML round-trip vulnerability in REXML See the commit logs for details. By this release, we end the normal maintenance phase of Ruby 2.6, and Ruby 2.6 enters the security maintenance phase. This means that we will no longer backport any bug fixes to Ruby 2.6 except security fixes. The term of the security maintenance phase is scheduled for a year. Ruby 2.6 reaches EOL and its official support ends by the end of the security maintenance phase. Therefore, we recommend that you start to plan upgrade to Ruby 2.7 or 3.0. --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 13:00:25 UTC 2021 Modified Files: pkgsrc/lang/ruby26-base: ALTERNATIVES Log Message: lang/ruby26-base: fix ALTERNATIVES file
2021-04-15Pullup ticket #6442 - requested by tacabsiegert4-15/+12
lang/ruby25-base: security fix (via patch) -- Ruby 2.5.9 has been released. This release includes security fixes. Please check the topics below for details. * CVE-2020-25613: Potential HTTP Request Smuggling Vulnerability in WEBrick * CVE-2021-28965: XML round-trip vulnerability in REXML See the commit logs for details. After this release, Ruby 2.5 reaches EOL. In other words, this is the last release of Ruby 2.5 series. We will not release Ruby 2.5.10 even if a security vulnerability is found. We recommend all Ruby 2.5 users to upgrade to Ruby 3.0, 2.7 or 2.6 immediately. --
2021-04-15Pullup ticket #6441 - requested by tacabsiegert1-5/+2
security/ruby-rex-exploitation: build fix Revisions pulled up: - security/ruby-rex-exploitation/Makefile 1.9 --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 00:10:55 UTC 2021 Modified Files: pkgsrc/security/ruby-rex-exploitation: Makefile Log Message: security/ruby-rex-exploitation: remove dependency to ruby-rexml Dro dependency to ruby-rexml since all ruby*-base contains ruby-rexml package.
2021-04-15Pullup ticket #6440 - requested by tacabsiegert1-1/+4
textproc/ruby-rexml: build fix Revisions pulled up: - textproc/ruby-rexml/Makefile 1.13 --- Module Name: pkgsrc Committed By: taca Date: Sun Apr 11 00:08:40 UTC 2021 Modified Files: pkgsrc/textproc/ruby-rexml: Makefile Log Message: textproc/ruby-rexml: do not build on Ruby 3.0 Do not build on Ruby 3.0 since it contains the same version of rexml gem and conflicts with this package. Noted by private e-mail from wiz@, thank you!
2021-04-10Pullup tickets up to #6439bsiegert1-1/+13
2021-04-10Pullup ticket #6439 - requested by niabsiegert1-6/+12
emulators/qemu51: bugfix Revisions pulled up: - emulators/qemu51/Makefile 1.2 --- Module Name: pkgsrc Committed By: nia Date: Thu Apr 8 13:29:42 UTC 2021 Modified Files: pkgsrc/emulators/qemu51: Makefile Log Message: qemu51: correct path to OSS audio device
2021-04-10Pullup ticket #6438 - requested by niabsiegert1-6/+12
emulators/qemu: bugfix Revisions pulled up: - emulators/qemu/Makefile 1.273 --- Module Name: pkgsrc Committed By: nia Date: Thu Apr 8 13:18:04 UTC 2021 Modified Files: pkgsrc/emulators/qemu: Makefile Log Message: qemu: correct path to OSS audio device
2021-04-10Pullup ticket #6437 - requested by leotbsiegert3-8/+14
net/youtube-dl: bugfixes Revisions pulled up: - net/youtube-dl/Makefile 1.237-1.239 - net/youtube-dl/PLIST 1.113 - net/youtube-dl/distinfo 1.217-1.219 --- Module Name: pkgsrc Committed By: leot Date: Wed Mar 31 18:26:58 UTC 2021 Modified Files: pkgsrc/net/youtube-dl: Makefile distinfo Log Message: youtube-dl: Update to 20210331 Changes: 20210331 -------- Extractors * [vlive] Fix inkey request (#28589) * [francetvinfo] Improve video id extraction (#28584) + [instagram] Extract duration (#28469) * [instagram] Improve title extraction (#28469) + [sbs] Add support for ondemand watch URLs (#28566) * [youtube] Fix video's channel extraction (#28562) * [picarto] Fix live stream extraction (#28532) * [vimeo] Fix unlisted video extraction (#28414) * [youtube:tab] Fix playlist/community continuation items extraction (#28266) * [ard] Improve clip id extraction (#22724, #28528) --- Module Name: pkgsrc Committed By: leot Date: Thu Apr 1 12:14:15 UTC 2021 Modified Files: pkgsrc/net/youtube-dl: Makefile distinfo Log Message: youtube-dl: Update to 20210401 Changes: 20210401 -------- Extractors * [youtube] Setup CONSENT cookie when needed (#28604) * [vimeo] Fix password protected review extraction (#27591) * [youtube] Improve age-restricted video extraction (#28578) --- Module Name: pkgsrc Committed By: leot Date: Wed Apr 7 13:21:01 UTC 2021 Modified Files: pkgsrc/net/youtube-dl: Makefile PLIST distinfo Log Message: youtube-dl: Update to 20210407 Changes: 20210407 -------- Core * [extractor/common] Use compat_cookies_SimpleCookie for _get_cookies + [compat] Introduce compat_cookies_SimpleCookie * [extractor/common] Improve JSON-LD author extraction * [extractor/common] Fix _get_cookies on python 2 (#20673, #23256, #20326, #28640) Extractors * [youtube] Fix extraction of videos with restricted location (#28685) + [line] Add support for live.line.me (#17205, #28658) * [vimeo] Improve extraction (#28591) * [youku] Update ccode (#17852, #28447, #28460, #28648) * [youtube] Prefer direct entry metadata over entry metadata from playlist (#28619, #28636) * [screencastomatic] Fix extraction (#11976, #24489) + [palcomp3] Add support for palcomp3.com (#13120) + [arnes] Add support for video.arnes.si (#28483) + [youtube:tab] Add support for hashtags (#28308)
2021-04-10Pullup ticket #6436 - requested by hebsiegert3-91/+53
lang/rust: build fixes Revisions pulled up: - lang/rust/Makefile 1.221-1.227 - lang/rust/distinfo 1.128 - lang/rust/options.mk 1.12-1.14 --- Module Name: pkgsrc Committed By: nia Date: Tue Mar 30 09:50:14 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile options.mk Log Message: rust: normalize workarounds for cargo dependencies on NetBSD Havard would like all rusts to be built with rust-cargo-static, because this makes it easier to produce working bootstaps. In order to do this, we need to handle the OpenSSL and curl dependencies in older bootstrap kits properly. This means, for the remaining bootstraps that do not yet have cargo with static/vendored dependencies: - depend on base 8.0 openssl (compat80) on i386. - depend on pkgsrc curl on aarch64 and earmv7. the armv7 bootstrap is built for 9.0 so does not need compat80. the aarch64 bootstrap is built for 8.99.50 so does not need compat80. --- Module Name: pkgsrc Committed By: nia Date: Wed Mar 31 16:45:08 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile options.mk Log Message: rust: Only enable rust-cargo-static when building bootstraps. The final compiler will be dynamically linked with OpenSSL and curl, but this is undesirable in the case of bootstraps where it might be built against a version incompatible with version the user has. Discussed with he@. --- Module Name: pkgsrc Committed By: he Date: Sun Apr 4 08:36:05 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: Bump the rust binary bootstraps to 1.49 for the remaining NetBSD ports. The 1.49 cargo binary has a much reduced set of dynamic dependencies, increasing the probability that they'll run on the host. --- Module Name: pkgsrc Committed By: he Date: Sun Apr 4 08:40:44 UTC 2021 Modified Files: pkgsrc/lang/rust: distinfo Log Message: Recompute checksums after the bootstrap version bump. --- Module Name: pkgsrc Committed By: he Date: Sun Apr 4 08:51:20 UTC 2021 Modified Files: pkgsrc/lang/rust: options.mk Log Message: Change rust-cargo-static condition on NetBSD. Key off BUILD_TARGET instead of whether we're cross-building, as bootstrap kits *can* be built natively (yes, the former state was my suggestion, but on second thought this is more correct). --- Module Name: pkgsrc Committed By: nia Date: Sun Apr 4 09:23:38 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: rust: Remove old NetBSD bootstrap workarounds --- Module Name: pkgsrc Committed By: he Date: Sun Apr 4 10:21:45 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: We need curl and openssl buildlinked if BUILD_TARGET is "build". This is because in that case we're not using the rust-internal copies of those libraries, governed by the rust-cargo-static option. --- Module Name: pkgsrc Committed By: he Date: Sun Apr 4 10:21:45 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: We need curl and openssl buildlinked if BUILD_TARGET is "build". This is because in that case we're not using the rust-internal copies of those libraries, governed by the rust-cargo-static option. --- Module Name: pkgsrc Committed By: he Date: Sun Apr 4 13:30:16 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: Undo previous, curl and openssl are already conditionally buildlinked in options.mk, nia@ pointed out. --- Module Name: pkgsrc Committed By: he Date: Sun Apr 4 17:49:42 UTC 2021 Modified Files: pkgsrc/lang/rust: Makefile Log Message: Hopefully today's last mistake: undo my MAKE_JOBS_SAFE mistake.
2021-04-04#6435spz1-1/+4
2021-04-04Pullup ticket #6435 - requested by leotspz3-8/+12
www/curl: security update Revisions pulled up: - www/curl/Makefile 1.240 - www/curl/PLIST 1.85 - www/curl/distinfo 1.169 ------------------------------------------------------------------- Module Name: pkgsrc Committed By: leot Date: Wed Mar 31 09:52:31 UTC 2021 Modified Files: pkgsrc/www/curl: Makefile PLIST distinfo Log Message: curl: Update to 7.76.0 Changes: 7.76.0 === This release includes the following changes: o cookies: Support multiple -b parameters o curl: add --fail-with-body o doh: add options to disable ssl verification o http: add support to read and store the referrer header o sasl: support SCRAM-SHA-1 and SCRAM-SHA-256 via libgsasl o vtls: initial implementation of rustls backend This release includes the following bugfixes: o CVE-2021-22876: strip credentials from the auto-referer header field o CVE-2021-22890: add 'isproxy' argument to Curl_ssl_get/addsessionid() o asyn-ares: use consistent resolve error message o BUG-BOUNTY: removed the cooperation mention o build: delete unused feature guards o build: fix --disable-dateparse o build: fix --disable-http-auth o build: remove all traces of USE_BLOCKING_SOCKETS o c-hyper: Remove superfluous pointer check o c-hyper: support automatic content-encoding o CI/azure: disable test 433 on azure-ubuntu o CI/azure: replace python-impacket with python3-impacket o ci: stop building on freebsd-12-1 o cmake: fix import library name for non-MS compiler on Windows o cmake: use CMAKE_INSTALL_INCLUDEDIR indirection o cmake: support WinIDN o config: fix building SMB with configure using Win32 Crypto o config: fix detection of restricted Windows App environment o configure: fail if --with-quiche is used and quiche isn't found o configure: make AC_TRY_* into AC_*_IFELSE o configure: make hyper opt-in, and fail if missing o configure: only add OpenSSL paths if they are defined o configure: provide Largefile feature for curl-config o configure: remove use of deprecated macros o configure: s/AC_HELP_STRING/AS_HELP_STRING o cookies: Fix potential NULL pointer deref with PSL o curl: set CURLOPT_NEW_FILE_PERMS if requested o curl_easy_setopt.3: add curl_easy_option* functions to SEE ALSO o curl_multibyte: always return a heap-allocated copy of string o curl_multibyte: fall back to local code page stat/access on Windows o Curl_timeleft: check both timeouts during connect o curl_url_set.3: mention CURLU_PATH_AS_IS o CURLOPT_QUOTE.3: clarify that libcurl doesn't parse what's sent o docs/HTTP2: remove the outdated remark about multiplexing for the tool o docs/Makefile.inc: format to be update-friendly o docs: add CURLOPT_CURLU to 'See also' in curl_url_ functions o docs: add missing Arg tag to --stderr o docs: Add SSL backend names to CURL_SSL_BACKEND o docs: clarify timeouts for queued transfers in multi API o docs: Explain DOH transfers inherit some SSL settings o docs: fix FILE example url in --metalink documentation o docs: make gen.pl support *italic* and **bold** o doh: Fix sharing user's resolve list with DOH handles o doh: Inherit CURLOPT_STDERR from user's easy handle o dynbuf: bump the max HTTP request to 1MB o examples: Remove threaded-shared-conn.c due to bug o file: Support unicode urls on windows o ftp: add 'list_only' to the transfer state struct o ftp: add 'prefer_ascii' to the transfer state struct o FTP: allow SIZE to fail when doing (resumed) upload o ftp: avoid SIZE when asking for a TYPE A file o ftp: fix Codacy/cppcheck warning about null pointer arithmetic o ftp: fix memory leak in ftp_done o ftp: never set data->set.ftp_append outside setopt o gen.pl: quote "bare" minuses in the nroff curl.1 o github: add torture-ftp for FTP-only torture testing o gnutls: assume nettle crypto support o gskit: correct the gskit_send() prototype o hostip: fix build with sync resolver o hostip: fix crash in sync resolver builds that use DOH o hsts: remove unused defines o http2: don't set KEEP_SEND when there's no more data to be sent o http2: fail if connection terminated without END_STREAM o http: cap body data amount during send speed limiting o http: do not add a referrer header with empty value o http: make 416 not fail with resume + CURLOPT_FAILONERRROR o http: remove superfluous NULL assign o http: strip default port from URL sent to proxy o http: use credentials from transfer, not connection o ldap: use correct memory free function o lib1536: check ptr against NULL before dereferencing it o lib1537: check ptr against NULL before dereferencing it o lib: remove 'conn->data' completely o libssh2: kdb_callback: get the right struct pointer o libssh2:ssh_connect: clear session pointer after free o memdebug: close debug logfile explicitly on exit o mingw: enable using strcasecmp() o multi: close the connection when h2=>h1 downgrading o multi: do once-per-transfer inits in before_perform in DID state o multi: rename the multi transfer states o multi: update pending list when removing handle o ngtcp2: adapt to the new recv_datagram callback o ngtcp2: clarify calculation precedence o ngtcp2: Fix build error due to change in ngtcp2_addr_init o ngtcp2: sync with recent API updates o openldap: avoid NULL pointer dereferences o openssl: adapt to v3's new const for a few API calls o openssl: ensure to check SSL_CTX_set_alpn_protos return values o openssl: remove get_ssl_version_txt in favor of SSL_get_version o openssl: set the transfer pointer for logging early o OS400: update for CURLOPT_AWS_SIGV4 o parse_proxy: fix a memory leak in the OOM path o pathhelp.pm: fix use of pwd -L in Msys environment o projects: Update VS projects for OpenSSL 1.1.x o quiche: fix build error: use 'int' for port number o quiche: fix crash when failing to connect o retry-all-errors.d: Explain curl errors versus HTTP response errors o retry.d: Clarify transient 5xx HTTP response codes o runtests.pl: add %TESTNUMBER variable to make copying tests more convenient o runtests.pl: add a -P option to specify an external proxy o runtests.pl: kill processes locking test log files o setopt: error on CURLOPT_HTTP09_ALLOWED set true with Hyper o test1188: change error to check for: --fail HTTP status o test220/314: adjust to run with Hyper o test304: header CRLF cleanup to work with Hyper o test306: make it not run with Hyper o tests: disable .curlrc in more environments o tests: use %TESTNUMBER instead of fixed number o tftp: remove the 3600 second default timeout o time: enable 64-bit time_t in supported mingw environments o tool_help: add missing argument for --create-file-mode o tool_help: Increase space between option and description o tool_operate: bail if set CURLOPT_HTTP09_ALLOWED returns error o travis: add a rustls build o travis: bump wolfssl to 4.7.0 o travis: only build wolfssl when needed o travis: split "torture" into a separate "events" build o travis: switch ngtcp2 build over to quictls o travis: use ubuntu nghttp2 package instead of build our own o url.c: use consistent error message for failed resolve o url: fix memory leak if OOM in the HSTS handling o url: fix possible use-after-free in default protocol o urldata: don't touch data->set.httpversion at run-time o urldata: fix build without HTTP and MQTT o urldata: make 'actions[]' use unsigned char instead of int o urldata: merge "struct DynamicStatic" into "struct UrlState" o urldata: remove the 'rtspversion' field o urldata: remove the _ORIG suffix from string names o version.d: Add missing features to the features list o wolfssl: don't store a NULL sessionid To generate a diff of this commit: cvs rdiff -u -r1.239 -r1.240 pkgsrc/www/curl/Makefile cvs rdiff -u -r1.84 -r1.85 pkgsrc/www/curl/PLIST cvs rdiff -u -r1.168 -r1.169 pkgsrc/www/curl/distinfo