Skip to content

Commit 8e875a9

Browse files
committed
http to https and some other tweaks
1 parent 95ae7d7 commit 8e875a9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+93
-94
lines changed

INSTALL.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
To configure, compile, and install the library, follow these steps carefully.
77

8-
1. Download the latest version of the library available from `http://dmalloc.com/'.
8+
1. Download the latest version of the library available from `https://dmalloc.com/'.
99

1010
2. The release files have a `.tgz' file extension which means that they are a tar'd gzip'd
1111
directory of files. You will need to ungzip and then untar the release file into your source
@@ -93,7 +93,7 @@ Started::.
9393
This section should give you a quick idea on how to get going. Basically, you need to do the
9494
following things to make use of the library:
9595

96-
1. Download the latest version of the library from `http://dmalloc.com/'.
96+
1. Download the latest version of the library from `https://dmalloc.com/'.
9797

9898
2. Run `./configure' to configure the library. Follow the installation instructions on how to
9999
configure, make, and install the library (i.e. type: `make install'). *Note Installation::.
@@ -116,7 +116,7 @@ following things to make use of the library:
116116
After you setup the alias, if you enter `dmalloc runtime' and see any output with
117117
DMALLOC_OPTIONS in it then the alias did not take effect.
118118

119-
Bash, ksh, and zsh (`http://www.zsh.org/') users should add the following to their `.bashrc',
119+
Bash, ksh, and zsh (`https://zsh.org/') users should add the following to their `.bashrc',
120120
`.profile', or `.zshrc' file respectively (notice the `-b' option for bourne shell output):
121121

122122
function dmalloc { eval `command dmalloc -b $*`; }
@@ -204,7 +204,7 @@ any additions to this list - either problems you are still having or tips that y
204204
pass on.
205205

206206
When diagnosing a problem, if possible, always make sure you are running the most up to date
207-
version of Dmalloc available from the home page at URL `http://dmalloc.com/'. Problems are often
207+
version of Dmalloc available from the home page at URL `https://dmalloc.com/'. Problems are often
208208
fixed and a new release can be published before people encounter them.
209209

210210
`Why does my program run so slow?'

LICENSE.txt

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
ISC License (https://opensource.org/licenses/ISC)
1+
Copyright 1992 to 2020 by Gray Watson.
22

3-
Copyright 2021, Gray Watson.
3+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without
4+
fee is hereby granted, provided that the above copyright notice and this permission notice appear
5+
in all copies.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
8+
SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
9+
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
10+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
11+
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
12+
THIS SOFTWARE.
413

5-
Permission to use, copy, modify, and/or distribute this software for any
6-
purpose with or without fee is hereby granted, provided that the above
7-
copyright notice and this permission notice appear in all copies.
814

9-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15-
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ programs.
1717

1818
The package includes the library, configuration scripts, debug utility application, test program, and
1919
documentation. Online documentation as well as the full source is available at the [dmalloc home
20-
page](http://dmalloc.com/).
20+
page](https://dmalloc.com/).
2121

2222
Enjoy. Gray Watson
2323

@@ -29,14 +29,14 @@ Examine the [html
2929
documentation](https://htmlpreview.github.io/?https://raw.githubusercontent.com/j256/dmalloc/master/dmalloc.html) for
3030
dmalloc. The source of all documation is the dmalloc.texi texinfo file which also can generate PDF hardcopy output with
3131
the help of the texinfo.tex file. You can download the full documentation package or read it [online from the
32-
repository](http://dmalloc.com/).
32+
repository](https://dmalloc.com/).
3333

3434
## Quick Getting Started
3535

3636
This section should give you an idea on how to get going. See the more complete [getting started
3737
documentation](https://dmalloc.com/docs/getting-started) for more details.
3838

39-
1. Download the latest version of the library available from http://dmalloc.com/.
39+
1. Download the latest version of the library available from https://dmalloc.com/.
4040

4141
2. Run `./configure` to configure the library.
4242

append.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
/*

append.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __APPENDER_H__

arg_check.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
/*

arg_check.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __ARG_CHECK_H__

chunk.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
/*
@@ -68,12 +68,12 @@
6868
*/
6969
#if IDENT_WORKS
7070
#ident "@(#) $Copyright: Dmalloc package Copyright 2020 by Gray Watson $"
71-
#ident "@(#) $URL: Source for dmalloc available from http://dmalloc.com/ $"
71+
#ident "@(#) $URL: Source for dmalloc available from https://dmalloc.com/ $"
7272
#else
7373
static char *copyright =
7474
"@(#) $Copyright: Dmalloc package Copyright 2020 by Gray Watson $";
7575
static char *source_url =
76-
"@(#) $URL: Source for dmalloc available from http://dmalloc.com/ $";
76+
"@(#) $URL: Source for dmalloc available from https://dmalloc.com/ $";
7777
#endif
7878

7979
#if LOCK_THREADS

chunk.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __CHUNK_H__

chunk_loc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __CHUNK_LOC_H__

compat.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
/*

compat.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __COMPAT_H__

conf.h.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __CONF_H__

configure

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Guess values for system-dependent variables and create Makefiles.
33
# Generated by GNU Autoconf 2.69 for dmalloc 5.6.5.
44
#
5-
# Report bugs to <http://dmalloc.com/>.
5+
# Report bugs to <https://dmalloc.com/>.
66
#
77
#
88
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -267,7 +267,7 @@ fi
267267
$as_echo "$0: be upgraded to zsh 4.3.4 or later."
268268
else
269269
$as_echo "$0: Please tell bug-autoconf@gnu.org and
270-
$0: http://dmalloc.com/ about your system, including any
270+
$0: https://dmalloc.com/ about your system, including any
271271
$0: error possibly output before this message. Then install
272272
$0: a modern shell, or manually run the script under such a
273273
$0: shell if you do have one."
@@ -582,7 +582,7 @@ PACKAGE_NAME='dmalloc'
582582
PACKAGE_TARNAME='dmalloc'
583583
PACKAGE_VERSION='5.6.5'
584584
PACKAGE_STRING='dmalloc 5.6.5'
585-
PACKAGE_BUGREPORT='http://dmalloc.com/'
585+
PACKAGE_BUGREPORT='https://dmalloc.com/'
586586
PACKAGE_URL=''
587587

588588
ac_unique_file="dmalloc.c"
@@ -1349,7 +1349,7 @@ Some influential environment variables:
13491349
Use these variables to override the choices made by `configure' or to help
13501350
it to find libraries and programs with nonstandard names/locations.
13511351
1352-
Report bugs to <http://dmalloc.com/>.
1352+
Report bugs to <https://dmalloc.com/>.
13531353
_ACEOF
13541354
ac_status=$?
13551355
fi
@@ -1651,9 +1651,9 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
16511651
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
16521652
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
16531653
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1654-
( $as_echo "## ---------------------------------- ##
1655-
## Report this to http://dmalloc.com/ ##
1656-
## ---------------------------------- ##"
1654+
( $as_echo "## ----------------------------------- ##
1655+
## Report this to https://dmalloc.com/ ##
1656+
## ----------------------------------- ##"
16571657
) | sed "s/^/$as_me: WARNING: /" >&2
16581658
;;
16591659
esac
@@ -6483,7 +6483,7 @@ $config_headers
64836483
Configuration commands:
64846484
$config_commands
64856485
6486-
Report bugs to <http://dmalloc.com/>."
6486+
Report bugs to <https://dmalloc.com/>."
64876487
64886488
_ACEOF
64896489
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
# software described herein for any purpose. It is provided "as is"
1717
# without express or implied warranty.
1818
#
19-
# The author may be contacted via http://dmalloc.com/
19+
# The author may be contacted via https://dmalloc.com/
2020
#
2121

22-
AC_INIT(dmalloc, 5.6.5, [http://dmalloc.com/])
22+
AC_INIT(dmalloc, 5.6.5, [https://dmalloc.com/])
2323
AC_CONFIG_SRCDIR(dmalloc.c)
2424
AC_CONFIG_HEADER(conf.h)
2525

debug_tok.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __DEBUG_TOK_H__

dmalloc.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
/*
@@ -780,7 +780,7 @@ static void dump_current(void)
780780
}
781781

782782
loc_fprintf(stderr, "\n");
783-
loc_fprintf(stderr, "Debug Malloc Utility: http://dmalloc.com/\n");
783+
loc_fprintf(stderr, "Debug Malloc Utility: https://dmalloc.com/\n");
784784
loc_fprintf(stderr, " For a list of the command-line options enter: %s --usage\n",
785785
argv_argv[0]);
786786
}
@@ -841,7 +841,7 @@ static char *local_strerror(const int error_num)
841841
*/
842842
static void header(void)
843843
{
844-
loc_fprintf(stderr, "Debug Malloc Utility: http://dmalloc.com/\n");
844+
loc_fprintf(stderr, "Debug Malloc Utility: https://dmalloc.com/\n");
845845
loc_fprintf(stderr,
846846
" This utility helps set the Debug Malloc environment variables.\n");
847847
}

dmalloc.h.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* software described herein for any purpose. It is provided "as is"
1717
* without express or implied warranty.
1818
*
19-
* The author may be contacted via http://dmalloc.com/
19+
* The author may be contacted via https://dmalloc.com/
2020
*/
2121

2222
#ifndef __DMALLOC_H__

0 commit comments

Comments
 (0)