diff options
author | J.R. Oldroyd <fbsd@opal.com> | 2023-01-16 17:56:29 +0100 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2023-01-16 18:33:55 +0100 |
commit | 82f36772565dc3bcf17661df5ac8360c85fe426c (patch) | |
tree | 1b166688d6a98e18a3b41513f1fdb5bbdc3fda46 /net/pload/files/patch-Imakefile | |
parent | audio/py-pyradio: Update to 0.8.9.36 (diff) |
net/pload: Fix command-line args and unit display.
This patch updates the port to fix the fact that the code calls
XtAppInitialize() which eats the command-line args and so causes ps(1)
to not display them. The command-line args are now saved before and restored
after the call to XtAppInitialize().
Also, correct the display of the units of total byte counts to show as "B",
"kB", "GB" etc, rather than the imprecise/incorrect "b", "k", "G" etc.
PR: 267710
Approved by: J.R. Oldroyd (maintainer)
Diffstat (limited to 'net/pload/files/patch-Imakefile')
-rw-r--r-- | net/pload/files/patch-Imakefile | 31 |
1 files changed, 11 insertions, 20 deletions
diff --git a/net/pload/files/patch-Imakefile b/net/pload/files/patch-Imakefile index ae8cc75f98c7..09a8cdabf97c 100644 --- a/net/pload/files/patch-Imakefile +++ b/net/pload/files/patch-Imakefile @@ -1,20 +1,11 @@ -diff -c Imakefile.orig Imakefile -*** Imakefile.orig Tue Feb 1 02:11:24 2000 ---- Imakefile Tue Aug 3 10:02:12 2004 -*************** -*** 15,21 **** - - ComplexProgramTarget(pload) - -! distclean: clean - $(RM) Makefile osdefs.mk core \ - pload-$(VER).tar.gz \ - pload-$(VER)-1.i386.rpm \ ---- 15,21 ---- - - ComplexProgramTarget(pload) - -! distclean:: clean - $(RM) Makefile osdefs.mk core \ - pload-$(VER).tar.gz \ - pload-$(VER)-1.i386.rpm \ +--- Imakefile.orig 2000-02-01 07:11:24 UTC ++++ Imakefile +@@ -15,7 +15,7 @@ DEFINES = -DVERSION="\"Pload version $(VER)\"" $(OSDEF + + ComplexProgramTarget(pload) + +-distclean: clean ++distclean:: clean + $(RM) Makefile osdefs.mk core \ + pload-$(VER).tar.gz \ + pload-$(VER)-1.i386.rpm \ |