mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00
Reassign copyright from Digital Mars to The D Language Foundation (manual)
This commit is contained in:
parent
218cab33c8
commit
b63b1db450
16 changed files with 22 additions and 22 deletions
|
@ -1,4 +1,4 @@
|
|||
.TH DMD 1 "2011-02-22" "Digital Mars" "Digital Mars D"
|
||||
.TH DMD 1 "2011-02-22" "The D Language Foundation" "The D Language Foundation"
|
||||
.SH NAME
|
||||
dmd \- Digital Mars D2.x Compiler
|
||||
.SH SYNOPSIS
|
||||
|
@ -239,10 +239,10 @@ does it. I don't know if this is an issue or not.
|
|||
.PP
|
||||
The compiler sometimes gets the line number wrong on an error.
|
||||
.SH AUTHOR
|
||||
Copyright (c) 1999-2016 by Digital Mars written by Walter Bright
|
||||
Copyright (c) 1999-2017 by The D Language Foundation written by Walter Bright
|
||||
.SH "ONLINE DOCUMENTATION"
|
||||
.UR http://www.digitalmars.com/d/index.html
|
||||
http://www.digitalmars.com/d/index.html
|
||||
.UR https://dlang.org/dmd.html
|
||||
https://dlang.org/dmd.html
|
||||
.UE
|
||||
.SH "SEE ALSO"
|
||||
.BR dmd.conf (5)
|
||||
|
|
2
dub.sdl
2
dub.sdl
|
@ -1,7 +1,7 @@
|
|||
name "dmd"
|
||||
description "The DMD compiler"
|
||||
authors "Walter Bright"
|
||||
copyright "Copyright © 1999-2017, Digital Mars"
|
||||
copyright "Copyright © 1999-2017, The D Language Foundation"
|
||||
license "BSL-1.0"
|
||||
|
||||
targetType "none"
|
||||
|
|
|
@ -599,18 +599,18 @@ typedef int SYMIDX; // symbol table index
|
|||
#ifndef COPYRIGHT_SYMBOL
|
||||
#define COPYRIGHT_SYMBOL "\xA9"
|
||||
#endif
|
||||
#define COPYRIGHT "Copyright " COPYRIGHT_SYMBOL " 2001 Digital Mars"
|
||||
#define COPYRIGHT "Copyright " COPYRIGHT_SYMBOL " 2001-2017 The D Language Foundation"
|
||||
#else
|
||||
#ifdef DEBUG
|
||||
#define COPYRIGHT "Copyright (C) Digital Mars 2000-2016. All Rights Reserved.\n\
|
||||
#define COPYRIGHT "Copyright (C) The D Language Foundation 2000-2017. All Rights Reserved.\n\
|
||||
Written by Walter Bright\n\
|
||||
*****BETA TEST VERSION*****"
|
||||
#else
|
||||
#if __linux__
|
||||
#define COPYRIGHT "Copyright (C) Digital Mars 2000-2016. All Rights Reserved.\n\
|
||||
#define COPYRIGHT "Copyright (C) The D Language Foundation 2000-2017. All Rights Reserved.\n\
|
||||
Written by Walter Bright, Linux version by Pat Nelson"
|
||||
#else
|
||||
#define COPYRIGHT "Copyright (C) Digital Mars 2000-2016. All Rights Reserved.\n\
|
||||
#define COPYRIGHT "Copyright (C) The D Language Foundation Mars 2000-2017. All Rights Reserved.\n\
|
||||
Written by Walter Bright"
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* Compiler implementation of the $(LINK2 http://www.dlang.org, D programming language)
|
||||
*
|
||||
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
|
||||
* Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
|
||||
* Authors: Walter Bright, http://www.digitalmars.com
|
||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/cppmanglewin.d, _cppmanglewin.d)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Compiler implementation of the
|
||||
* $(LINK2 http://www.dlang.org, D programming language).
|
||||
*
|
||||
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
|
||||
* Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
|
||||
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
|
||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/dsymbolsem.d, _dsymbolsem.d)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Compiler implementation of the
|
||||
* $(LINK2 http://www.dlang.org, D programming language).
|
||||
*
|
||||
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
|
||||
* Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
|
||||
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
|
||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Source: $(DMDSRC _expression.d)
|
||||
|
|
|
@ -355,7 +355,7 @@ struct Global
|
|||
{
|
||||
static assert(0, "fix this");
|
||||
}
|
||||
copyright = "Copyright (c) 1999-2017 by Digital Mars";
|
||||
copyright = "Copyright (c) 1999-2017 by The D Language Foundation";
|
||||
written = "written by Walter Bright";
|
||||
_version = (import("VERSION") ~ '\0').ptr;
|
||||
compiler.vendor = "Digital Mars D";
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Compiler implementation of the
|
||||
* $(LINK2 http://www.dlang.org, D programming language).
|
||||
*
|
||||
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
|
||||
* Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
|
||||
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
|
||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/initsem.d, _initsem.d)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
/* Compiler implementation of the D programming language
|
||||
* Copyright (c) 1999-2016 by Digital Mars
|
||||
* Copyright (c) 1999-2016 by The D Language Foundation
|
||||
* All Rights Reserved
|
||||
* written by Walter Bright
|
||||
* http://www.digitalmars.com
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Compiler implementation of the
|
||||
* $(LINK2 http://www.dlang.org, D programming language).
|
||||
*
|
||||
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
|
||||
* Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
|
||||
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
|
||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/semantic.d, _semantic.d)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* Template implementation.
|
||||
*
|
||||
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
|
||||
* Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
|
||||
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
|
||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/ddmd/templateparamsem.d, _templateparamsem.d)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Compiler implementation of the
|
||||
* $(LINK2 http://www.dlang.org, D programming language).
|
||||
*
|
||||
* Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved
|
||||
* Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
|
||||
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
|
||||
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
* Source: $(DMDSRC _mtype.d)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;; Compiler implementation of the D programming language
|
||||
;; Copyright (c) 1999-2016 by Digital Mars
|
||||
;; Copyright (c) 1999-2016 by The D Language Foundation
|
||||
;; All Rights Reserved
|
||||
;; written by Rainer Schuetze
|
||||
;; http://www.digitalmars.com
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#_ win32.mak
|
||||
#
|
||||
# Copyright (c) 1999-2016 by Digital Mars
|
||||
# Copyright (c) 1999-2016 by The D Language Foundation
|
||||
# All Rights Reserved
|
||||
# written by Walter Bright
|
||||
# http://www.digitalmars.com
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// PERMUTE_ARGS:
|
||||
|
||||
// Copyright (c) 1999-2016 by Digital Mars
|
||||
// Copyright (c) 1999-2016 by The D Language Foundation
|
||||
// All Rights Reserved
|
||||
// written by Walter Bright
|
||||
// http://www.digitalmars.com
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// PERMUTE_ARGS:
|
||||
|
||||
// Copyright (c) 1999-2016 by Digital Mars
|
||||
// Copyright (c) 1999-2016 by The D Language Foundation
|
||||
// All Rights Reserved
|
||||
// written by Walter Bright
|
||||
// http://www.digitalmars.com
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue