pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/valgrind valgrind: update to 3.16.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/798b5715e430
branches: trunk
changeset: 440394:798b5715e430
user: mcf <mcf%pkgsrc.org@localhost>
date: Thu Oct 08 03:30:58 2020 +0000
description:
valgrind: update to 3.16.1
Release 3.16.1 (22 June 2020)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3.16.1 fixes two critical bugs discovered after 3.16.0 was frozen. It also
fixes character encoding problems in the documentation HTML.
Release 3.16.0 (27 May 2020)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3.16.0 is a feature release with many improvements and the usual collection of
bug fixes.
This release supports X86/Linux, AMD64/Linux, ARM32/Linux, ARM64/Linux,
PPC32/Linux, PPC64BE/Linux, PPC64LE/Linux, S390X/Linux, MIPS32/Linux,
MIPS64/Linux, ARM/Android, ARM64/Android, MIPS32/Android, X86/Android,
X86/Solaris, AMD64/Solaris and AMD64/MacOSX 10.12. There is also preliminary
support for X86/macOS 10.13, AMD64/macOS 10.13 and nanoMIPS/Linux.
* ==================== CORE CHANGES ===================
* It is now possible to dynamically change the value of many command line
options while your program (or its children) are running under Valgrind.
To see the list of dynamically changeable options, run
"valgrind --help-dyn-options".
You can change the options from the shell by using vgdb to launch
the monitor command "v.clo <clo option>...".
The same monitor command can be used from a gdb connected
to the valgrind gdbserver.
Your program can also change the dynamically changeable options using
the client request VALGRIND_CLO_CHANGE(option).
* ================== PLATFORM CHANGES =================
* MIPS: preliminary support for nanoMIPS instruction set has been added.
* ==================== TOOL CHANGES ====================
* DHAT:
- The implicit memcpy done by each call to realloc now counts towards the
read and write counts of resized heap blocks, making those counts higher
and more accurate.
* Cachegrind:
- cg_annotate's --auto and --show-percs options now default to 'yes', because
they are usually wanted.
* Callgrind:
- callgrind_annotate's --auto and --show-percs options now default to 'yes',
because they are usually wanted.
- The command option --collect-systime has been enhanced to specify
the unit used to record the elapsed time spent during system calls.
The command option now accepts the values no|yes|msec|usec|nsec,
where yes is a synonym of msec. When giving the value nsec, the
system cpu time of system calls is also recorded.
* Memcheck:
- Several memcheck options are now dynamically changeable.
Use valgrind --help-dyn-options to list them.
- The release 3.15 introduced a backward incompatible change for
some suppression entries related to preadv and pwritev syscalls.
When reading a suppression entry using the unsupported 3.14 format,
valgrind will now produce a warning to say the suppression entry will not
work, and suggest the needed change.
- Significantly fewer false positive errors on optimised code generated by
Clang and GCC. In particular, Memcheck now deals better with the
situation where the compiler will transform C-level "A && B" into "B && A"
under certain circumstances (in which the transformation is valid).
Handling of integer equality/non-equality checks on partially defined
values is also improved on some architectures.
* exp-sgcheck:
- The exprimental Stack and Global Array Checking tool has been removed.
It only ever worked on x86 and amd64, and even on those it had a
high false positive rate and was slow. An alternative for detecting
stack and global array overruns is using the AddressSanitizer (ASAN)
facility of the GCC and Clang compilers, which require you to rebuild
your code with -fsanitize=address.
* ==================== OTHER CHANGES ====================
* New and modified GDB server monitor features:
- Option -T tells vgdb to output a timestamp in the vgdb information messages.
- The gdbserver monitor commands that require an address and an optional
length argument now accepts the alternate 'C like' syntax "address[length]".
For example, the memcheck command "monitor who_points_at 0x12345678 120"
can now also be given as "monitor who_points_at 0x12345678[120]".
Release 3.15.0 (12 April 2019)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3.15.0 is a feature release with many improvements and the usual collection of
bug fixes.
This release supports X86/Linux, AMD64/Linux, ARM32/Linux, ARM64/Linux,
PPC32/Linux, PPC64BE/Linux, PPC64LE/Linux, S390X/Linux, MIPS32/Linux,
MIPS64/Linux, ARM/Android, ARM64/Android, MIPS32/Android, X86/Android,
X86/Solaris, AMD64/Solaris and AMD64/MacOSX 10.12. There is also preliminary
support for X86/macOS 10.13 and AMD64/macOS 10.13.
* ==================== CORE CHANGES ===================
* The XTree Massif output format now makes use of the information obtained
when specifying --read-inline-info=yes.
* amd64 (x86_64): the RDRAND and F16C insn set extensions are now supported.
* ==================== TOOL CHANGES ====================
* DHAT:
- DHAT been thoroughly overhauled, improved, and given a GUI. As a result,
it has been promoted from an experimental tool to a regular tool. Run it
with --tool=dhat instead of --tool=exp-dhat.
- DHAT now prints only minimal data when the program ends, instead writing
the bulk of the profiling data to a file. As a result, the --show-top-n
and --sort-by options have been removed.
- Profile results can be viewed with the new viewer, dh_view.html. When
a run ends, a short message is printed, explaining how to view the result.
- See the documentation for more details.
* Cachegrind:
- cg_annotate has a new option, --show-percs, which prints percentages next
to all event counts.
* Callgrind:
- callgrind_annotate has a new option, --show-percs, which prints percentages
next to all event counts.
- callgrind_annotate now inserts commas in call counts, and
sort the caller/callee lists in the call tree.
* Massif:
- The default value for --read-inline-info is now "yes" on
Linux/Android/Solaris. It is still "no" on other OS.
* Memcheck:
- The option --xtree-leak=yes (to output leak result in xtree format)
automatically activates the option --show-leak-kinds=all, as xtree
visualisation tools such as kcachegrind can in any case select what kind
of leak to visualise.
- There has been further work to avoid false positives. In particular,
integer equality on partially defined inputs (C == and !=) is now handled
better.
* ==================== OTHER CHANGES ====================
* The new option --show-error-list=no|yes displays, at the end of the run, the
list of detected errors and the used suppressions. Prior to this change,
showing this information could only be done by specifying "-v -v", but that
also produced a lot of other possibly-non-useful messages. The option -s is
equivalent to --show-error-list=yes.
Release 3.14.0 (9 October 2018)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3.14.0 is a feature release with many improvements and the usual collection of
bug fixes.
This release supports X86/Linux, AMD64/Linux, ARM32/Linux, ARM64/Linux,
PPC32/Linux, PPC64BE/Linux, PPC64LE/Linux, S390X/Linux, MIPS32/Linux,
MIPS64/Linux, ARM/Android, ARM64/Android, MIPS32/Android, X86/Android,
X86/Solaris, AMD64/Solaris and AMD64/MacOSX 10.12. There is also preliminary
support for X86/macOS 10.13, AMD64/macOS 10.13.
* ==================== CORE CHANGES ===================
* The new option --keep-debuginfo=no|yes (default no) can be used to retain
debug info for unloaded code. This allows saved stack traces (e.g. for
memory leaks) to include file/line info for code that has been dlclose'd (or
similar). See the user manual for more information and known limitations.
* Ability to specify suppressions based on source file name and line number.
* Majorly overhauled register allocator. No end-user changes, but the JIT
generates code a bit more quickly now.
* ================== PLATFORM CHANGES =================
* Preliminary support for macOS 10.13 has been added.
* mips: support for MIPS32/MIPS64 Revision 6 has been added.
* mips: support for MIPS SIMD architecture (MSA) has been added.
* mips: support for MIPS N32 ABI has been added.
* s390: partial support for vector instructions (integer and string) has been
added.
* ==================== TOOL CHANGES ====================
* Helgrind: Addition of a flag
--delta-stacktrace=no|yes [yes on linux amd64/x86]
which specifies how full history stack traces should be computed.
Setting this to =yes can speed up Helgrind by 25% when using
--history-level=full.
* Memcheck: reduced false positive rate for optimised code created by Clang 6
/ LLVM 6 on x86, amd64 and arm64. In particular, Memcheck analyses code
blocks more carefully to determine where it can avoid expensive definedness
checks without loss of precision. This is controlled by the flag
--expensive-definedness-checks=no|auto|yes [auto].
* ==================== OTHER CHANGES ====================
* Valgrind is now buildable with link-time optimisation (LTO). A new
configure option --enable-lto=yes allows building Valgrind with LTO. If the
toolchain supports it, this produces a smaller/faster Valgrind (up to 10%).
Note that if you are doing Valgrind development, --enable-lto=yes massively
slows down the build process.
diffstat:
devel/valgrind/Makefile | 7 +-
devel/valgrind/PLIST | 93 +++++++++++++++++++--------------
devel/valgrind/PLIST.Darwin | 14 +---
devel/valgrind/distinfo | 11 ++-
devel/valgrind/patches/patch-configure | 15 +++++
5 files changed, 83 insertions(+), 57 deletions(-)
diffs (truncated from 361 to 300 lines):
diff -r 575a62084bbe -r 798b5715e430 devel/valgrind/Makefile
--- a/devel/valgrind/Makefile Thu Oct 08 02:56:29 2020 +0000
+++ b/devel/valgrind/Makefile Thu Oct 08 03:30:58 2020 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.32 2020/08/31 18:09:22 wiz Exp $
+# $NetBSD: Makefile,v 1.33 2020/10/08 03:30:58 mcf Exp $
#
-DISTNAME= valgrind-3.13.0
-PKGREVISION= 3
+DISTNAME= valgrind-3.16.1
CATEGORIES= devel
MASTER_SITES= ftp://sourceware.org/pub/valgrind/
EXTRACT_SUFX= .tar.bz2
@@ -13,7 +12,7 @@
LICENSE= gnu-gpl-v2
USE_PKGLOCALEDIR= yes
-PKGCONFIG_OVERRIDE+= ${WRKSRC}/valgrind.pc.in
+PKGCONFIG_OVERRIDE+= valgrind.pc.in
GNU_CONFIGURE= yes
ONLY_FOR_PLATFORM= Darwin-*-i386 Darwin-*-x86_64 \
diff -r 575a62084bbe -r 798b5715e430 devel/valgrind/PLIST
--- a/devel/valgrind/PLIST Thu Oct 08 02:56:29 2020 +0000
+++ b/devel/valgrind/PLIST Thu Oct 08 03:30:58 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2018/09/30 11:57:58 wiedi Exp $
+@comment $NetBSD: PLIST,v 1.12 2020/10/08 03:30:58 mcf Exp $
bin/callgrind_annotate
bin/callgrind_control
bin/cg_annotate
@@ -13,11 +13,12 @@
include/valgrind/config.h
include/valgrind/drd.h
include/valgrind/helgrind.h
+include/valgrind/libvex.h
include/valgrind/libvex_basictypes.h
include/valgrind/libvex_emnote.h
include/valgrind/libvex_guest_amd64.h
+include/valgrind/libvex_guest_arm.h
include/valgrind/libvex_guest_arm64.h
-include/valgrind/libvex_guest_arm.h
include/valgrind/libvex_guest_mips32.h
include/valgrind/libvex_guest_mips64.h
include/valgrind/libvex_guest_offsets.h
@@ -25,7 +26,7 @@
include/valgrind/libvex_guest_ppc64.h
include/valgrind/libvex_guest_s390x.h
include/valgrind/libvex_guest_x86.h
-include/valgrind/libvex.h
+include/valgrind/libvex_inner.h
include/valgrind/libvex_ir.h
include/valgrind/libvex_s390x_common.h
include/valgrind/libvex_trc_values.h
@@ -33,8 +34,8 @@
include/valgrind/pub_tool_addrinfo.h
include/valgrind/pub_tool_aspacehl.h
include/valgrind/pub_tool_aspacemgr.h
+include/valgrind/pub_tool_basics.h
include/valgrind/pub_tool_basics_asm.h
-include/valgrind/pub_tool_basics.h
include/valgrind/pub_tool_clientstate.h
include/valgrind/pub_tool_clreq.h
include/valgrind/pub_tool_debuginfo.h
@@ -67,26 +68,29 @@
include/valgrind/pub_tool_tooliface.h
include/valgrind/pub_tool_transtab.h
include/valgrind/pub_tool_vki.h
+include/valgrind/pub_tool_vkiscnums.h
include/valgrind/pub_tool_vkiscnums_asm.h
-include/valgrind/pub_tool_vkiscnums.h
include/valgrind/pub_tool_wordfm.h
include/valgrind/pub_tool_xarray.h
include/valgrind/pub_tool_xtmemory.h
include/valgrind/pub_tool_xtree.h
include/valgrind/valgrind.h
include/valgrind/vki/vki-amd64-linux.h
+include/valgrind/vki/vki-arm-linux.h
include/valgrind/vki/vki-arm64-linux.h
-include/valgrind/vki/vki-arm-linux.h
include/valgrind/vki/vki-darwin.h
include/valgrind/vki/vki-linux-drm.h
+include/valgrind/vki/vki-linux-io_uring.h
include/valgrind/vki/vki-linux.h
include/valgrind/vki/vki-mips32-linux.h
include/valgrind/vki/vki-mips64-linux.h
+include/valgrind/vki/vki-nanomips-linux.h
include/valgrind/vki/vki-posixtypes-amd64-linux.h
+include/valgrind/vki/vki-posixtypes-arm-linux.h
include/valgrind/vki/vki-posixtypes-arm64-linux.h
-include/valgrind/vki/vki-posixtypes-arm-linux.h
include/valgrind/vki/vki-posixtypes-mips32-linux.h
include/valgrind/vki/vki-posixtypes-mips64-linux.h
+include/valgrind/vki/vki-posixtypes-nanomips-linux.h
include/valgrind/vki/vki-posixtypes-ppc32-linux.h
include/valgrind/vki/vki-posixtypes-ppc64-linux.h
include/valgrind/vki/vki-posixtypes-s390x-linux.h
@@ -94,15 +98,18 @@
include/valgrind/vki/vki-ppc32-linux.h
include/valgrind/vki/vki-ppc64-linux.h
include/valgrind/vki/vki-s390x-linux.h
+include/valgrind/vki/vki-scnums-32bit-linux.h
include/valgrind/vki/vki-scnums-amd64-linux.h
+include/valgrind/vki/vki-scnums-arm-linux.h
include/valgrind/vki/vki-scnums-arm64-linux.h
-include/valgrind/vki/vki-scnums-arm-linux.h
include/valgrind/vki/vki-scnums-darwin.h
include/valgrind/vki/vki-scnums-mips32-linux.h
include/valgrind/vki/vki-scnums-mips64-linux.h
+include/valgrind/vki/vki-scnums-nanomips-linux.h
include/valgrind/vki/vki-scnums-ppc32-linux.h
include/valgrind/vki/vki-scnums-ppc64-linux.h
include/valgrind/vki/vki-scnums-s390x-linux.h
+include/valgrind/vki/vki-scnums-shared-linux.h
include/valgrind/vki/vki-scnums-solaris.h
include/valgrind/vki/vki-scnums-x86-linux.h
include/valgrind/vki/vki-solaris-repcache.h
@@ -111,7 +118,6 @@
include/valgrind/vki/vki-xen-domctl.h
include/valgrind/vki/vki-xen-evtchn.h
include/valgrind/vki/vki-xen-gnttab.h
-include/valgrind/vki/vki-xen.h
include/valgrind/vki/vki-xen-hvm.h
include/valgrind/vki/vki-xen-memory.h
include/valgrind/vki/vki-xen-mmuext.h
@@ -122,6 +128,7 @@
include/valgrind/vki/vki-xen-version.h
include/valgrind/vki/vki-xen-x86.h
include/valgrind/vki/vki-xen-xsm.h
+include/valgrind/vki/vki-xen.h
lib/pkgconfig/valgrind.pc
lib/valgrind/32bit-core-valgrind-s1.xml
lib/valgrind/32bit-core-valgrind-s2.xml
@@ -161,21 +168,32 @@
lib/valgrind/cachegrind-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/callgrind-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/default.supp
+lib/valgrind/dhat-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/drd-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/exp-bbv-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
-lib/valgrind/exp-dhat-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
-lib/valgrind/exp-sgcheck-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/getoff-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/helgrind-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/i386-coresse-valgrind.xml
lib/valgrind/i386-linux-valgrind.xml
lib/valgrind/lackey-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/libcoregrind-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.a
+lib/valgrind/libgcc-sup-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.a
lib/valgrind/libreplacemalloc_toolpreload-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.a
lib/valgrind/libvex-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.a
lib/valgrind/libvexmultiarch-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.a
lib/valgrind/massif-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
lib/valgrind/memcheck-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
+lib/valgrind/mips-cp0-valgrind-s1.xml
+lib/valgrind/mips-cp0-valgrind-s2.xml
+lib/valgrind/mips-cp0.xml
+lib/valgrind/mips-cpu-valgrind-s1.xml
+lib/valgrind/mips-cpu-valgrind-s2.xml
+lib/valgrind/mips-cpu.xml
+lib/valgrind/mips-fpu-valgrind-s1.xml
+lib/valgrind/mips-fpu-valgrind-s2.xml
+lib/valgrind/mips-fpu.xml
+lib/valgrind/mips-linux-valgrind.xml
+lib/valgrind/mips-linux.xml
lib/valgrind/mips64-cp0-valgrind-s1.xml
lib/valgrind/mips64-cp0-valgrind-s2.xml
lib/valgrind/mips64-cp0.xml
@@ -187,26 +205,7 @@
lib/valgrind/mips64-fpu.xml
lib/valgrind/mips64-linux-valgrind.xml
lib/valgrind/mips64-linux.xml
-lib/valgrind/mips-cp0-valgrind-s1.xml
-lib/valgrind/mips-cp0-valgrind-s2.xml
-lib/valgrind/mips-cp0.xml
-lib/valgrind/mips-cpu-valgrind-s1.xml
-lib/valgrind/mips-cpu-valgrind-s2.xml
-lib/valgrind/mips-cpu.xml
-lib/valgrind/mips-fpu-valgrind-s1.xml
-lib/valgrind/mips-fpu-valgrind-s2.xml
-lib/valgrind/mips-fpu.xml
-lib/valgrind/mips-linux-valgrind.xml
-lib/valgrind/mips-linux.xml
lib/valgrind/none-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}
-lib/valgrind/power64-core-valgrind-s1.xml
-lib/valgrind/power64-core-valgrind-s2.xml
-lib/valgrind/power64-core.xml
-lib/valgrind/power64-core2-valgrind-s1.xml
-lib/valgrind/power64-core2-valgrind-s2.xml
-lib/valgrind/power64-linux-valgrind-s1.xml
-lib/valgrind/power64-linux-valgrind-s2.xml
-lib/valgrind/power64-linux.xml
lib/valgrind/power-altivec-valgrind-s1.xml
lib/valgrind/power-altivec-valgrind-s2.xml
lib/valgrind/power-altivec.xml
@@ -222,6 +221,14 @@
lib/valgrind/power-vsx-valgrind-s1.xml
lib/valgrind/power-vsx-valgrind-s2.xml
lib/valgrind/power-vsx.xml
+lib/valgrind/power64-core-valgrind-s1.xml
+lib/valgrind/power64-core-valgrind-s2.xml
+lib/valgrind/power64-core.xml
+lib/valgrind/power64-core2-valgrind-s1.xml
+lib/valgrind/power64-core2-valgrind-s2.xml
+lib/valgrind/power64-linux-valgrind-s1.xml
+lib/valgrind/power64-linux-valgrind-s2.xml
+lib/valgrind/power64-linux.xml
lib/valgrind/powerpc-altivec32l-valgrind.xml
lib/valgrind/powerpc-altivec32l.xml
lib/valgrind/powerpc-altivec64l-valgrind.xml
@@ -232,6 +239,9 @@
lib/valgrind/s390-fpr-valgrind-s1.xml
lib/valgrind/s390-fpr-valgrind-s2.xml
lib/valgrind/s390-fpr.xml
+lib/valgrind/s390-vx-valgrind-s1.xml
+lib/valgrind/s390-vx-valgrind-s2.xml
+lib/valgrind/s390-vx.xml
lib/valgrind/s390x-core64-valgrind-s1.xml
lib/valgrind/s390x-core64-valgrind-s2.xml
lib/valgrind/s390x-core64.xml
@@ -240,22 +250,29 @@
lib/valgrind/s390x-linux64-valgrind-s1.xml
lib/valgrind/s390x-linux64-valgrind-s2.xml
lib/valgrind/s390x-linux64.xml
+lib/valgrind/s390x-vx-linux-valgrind.xml
+lib/valgrind/s390x-vx-linux.xml
lib/valgrind/vgpreload_core-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
+lib/valgrind/vgpreload_dhat-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
lib/valgrind/vgpreload_drd-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
-lib/valgrind/vgpreload_exp-dhat-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
-lib/valgrind/vgpreload_exp-sgcheck-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
lib/valgrind/vgpreload_helgrind-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
lib/valgrind/vgpreload_massif-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
lib/valgrind/vgpreload_memcheck-${VGCONF_ARCH_PRI}-${LOWER_OPSYS}.so
+libexec/valgrind/dh_view.css
+libexec/valgrind/dh_view.html
+libexec/valgrind/dh_view.js
man/man1/callgrind_annotate.1
man/man1/callgrind_control.1
man/man1/cg_annotate.1
man/man1/cg_diff.1
man/man1/cg_merge.1
man/man1/ms_print.1
-man/man1/valgrind.1
+man/man1/valgrind-di-server.1
man/man1/valgrind-listener.1
+man/man1/valgrind.1
man/man1/vgdb.1
+share/doc/valgrind/html/FAQ.html
+share/doc/valgrind/html/QuickStart.html
share/doc/valgrind/html/bbv-manual.html
share/doc/valgrind/html/cg-manual.html
share/doc/valgrind/html/cl-format.html
@@ -266,19 +283,19 @@
share/doc/valgrind/html/dist.html
share/doc/valgrind/html/dist.news.html
share/doc/valgrind/html/dist.news.old.html
+share/doc/valgrind/html/dist.readme-android.html
share/doc/valgrind/html/dist.readme-android_emulator.html
-share/doc/valgrind/html/dist.readme-android.html
share/doc/valgrind/html/dist.readme-developers.html
-share/doc/valgrind/html/dist.readme.html
share/doc/valgrind/html/dist.readme-mips.html
share/doc/valgrind/html/dist.readme-missing.html
share/doc/valgrind/html/dist.readme-packagers.html
share/doc/valgrind/html/dist.readme-s390.html
share/doc/valgrind/html/dist.readme-solaris.html
+share/doc/valgrind/html/dist.readme.html
share/doc/valgrind/html/drd-manual.html
share/doc/valgrind/html/faq.html
-share/doc/valgrind/html/FAQ.html
share/doc/valgrind/html/hg-manual.html
+share/doc/valgrind/html/images/dh-tree.png
share/doc/valgrind/html/images/home.png
share/doc/valgrind/html/images/kcachegrind_xtree.png
share/doc/valgrind/html/images/next.png
@@ -291,15 +308,13 @@
share/doc/valgrind/html/lk-manual.html
share/doc/valgrind/html/manual-core-adv.html
share/doc/valgrind/html/manual-core.html
-share/doc/valgrind/html/manual.html
share/doc/valgrind/html/manual-intro.html
share/doc/valgrind/html/manual-writing-tools.html
+share/doc/valgrind/html/manual.html
share/doc/valgrind/html/mc-manual.html
share/doc/valgrind/html/ms-manual.html
share/doc/valgrind/html/nl-manual.html
share/doc/valgrind/html/quick-start.html
-share/doc/valgrind/html/QuickStart.html
-share/doc/valgrind/html/sg-manual.html
share/doc/valgrind/html/tech-docs.html
share/doc/valgrind/html/vg_basic.css
share/doc/valgrind/valgrind_manual.pdf
diff -r 575a62084bbe -r 798b5715e430 devel/valgrind/PLIST.Darwin
--- a/devel/valgrind/PLIST.Darwin Thu Oct 08 02:56:29 2020 +0000
+++ b/devel/valgrind/PLIST.Darwin Thu Oct 08 03:30:58 2020 +0000
@@ -1,10 +1,8 @@
-@comment $NetBSD: PLIST.Darwin,v 1.1 2012/11/04 05:12:56 minskim Exp $
+@comment $NetBSD: PLIST.Darwin,v 1.2 2020/10/08 03:30:58 mcf Exp $
Home |
Main Index |
Thread Index |
Old Index