diff options
Diffstat (limited to 'make')
-rwxr-xr-x | make/calcdep.pl | 20 | ||||
-rw-r--r-- | make/check_epoll.cpp | 18 | ||||
-rw-r--r-- | make/check_eventfd.cpp | 18 | ||||
-rw-r--r-- | make/configure.pm | 27 | ||||
-rw-r--r-- | make/gnutlscert.pm | 24 | ||||
-rw-r--r-- | make/opensslcert.pm | 24 | ||||
-rwxr-xr-x | make/run-cc.pl | 24 | ||||
-rw-r--r-- | make/template/inspircd | 24 | ||||
-rw-r--r-- | make/template/main.mk | 24 | ||||
-rwxr-xr-x | make/unit-cc.pl | 20 | ||||
-rw-r--r-- | make/utilities.pm | 26 |
11 files changed, 199 insertions, 50 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl index 16d05bf00..873b228ca 100755 --- a/make/calcdep.pl +++ b/make/calcdep.pl @@ -1,4 +1,24 @@ #!/usr/bin/env perl + +# +# InspIRCd -- Internet Relay Chat Daemon +# +# Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org> +# +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + + use strict; use warnings; use POSIX qw(getcwd); diff --git a/make/check_epoll.cpp b/make/check_epoll.cpp index 626d4475c..918d3907e 100644 --- a/make/check_epoll.cpp +++ b/make/check_epoll.cpp @@ -1,3 +1,21 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + + #include <sys/epoll.h> int main() { diff --git a/make/check_eventfd.cpp b/make/check_eventfd.cpp index 199cbcd31..980d04485 100644 --- a/make/check_eventfd.cpp +++ b/make/check_eventfd.cpp @@ -1,3 +1,21 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + + #include <sys/eventfd.h> int main() { diff --git a/make/configure.pm b/make/configure.pm index 230bd3934..253738b2d 100644 --- a/make/configure.pm +++ b/make/configure.pm @@ -1,14 +1,25 @@ -# +------------------------------------+ -# | Inspire Internet Relay Chat Daemon | -# +------------------------------------+ # -# InspIRCd: (C) 2002-2010 InspIRCd Development Team -# See: http://wiki.inspircd.org/Credits +# InspIRCd -- Internet Relay Chat Daemon # -# This program is free but copyrighted software; see -# the file COPYING for details. +# Copyright (C) 2012 Peter Powell <petpow@saberuk.com> +# Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net> +# Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc> +# Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org> +# Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> # -# --------------------------------------------------- +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + package make::configure; diff --git a/make/gnutlscert.pm b/make/gnutlscert.pm index 321ab7940..1621c2c27 100644 --- a/make/gnutlscert.pm +++ b/make/gnutlscert.pm @@ -1,14 +1,22 @@ -# +------------------------------------+ -# | Inspire Internet Relay Chat Daemon | -# +------------------------------------+ # -# InspIRCd: (C) 2002-2010 InspIRCd Development Team -# See: http://wiki.inspircd.org/Credits +# InspIRCd -- Internet Relay Chat Daemon # -# This program is free but copyrighted software; see -# the file COPYING for details. +# Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> +# Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc> # -# --------------------------------------------------- +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + package make::gnutlscert; diff --git a/make/opensslcert.pm b/make/opensslcert.pm index 99fee7997..fd7bd6998 100644 --- a/make/opensslcert.pm +++ b/make/opensslcert.pm @@ -1,14 +1,22 @@ -# +------------------------------------+ -# | Inspire Internet Relay Chat Daemon | -# +------------------------------------+ # -# InspIRCd: (C) 2002-2010 InspIRCd Development Team -# See: http://wiki.inspircd.org/Credits +# InspIRCd -- Internet Relay Chat Daemon # -# This program is free but copyrighted software; see -# the file COPYING for details. +# Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> +# Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc> # -# --------------------------------------------------- +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + package make::opensslcert; diff --git a/make/run-cc.pl b/make/run-cc.pl index 4c3ccbb41..58b5850ca 100755 --- a/make/run-cc.pl +++ b/make/run-cc.pl @@ -1,16 +1,24 @@ #!/usr/bin/env perl -# +------------------------------------+ -# | Inspire Internet Relay Chat Daemon | -# +------------------------------------+ # -# InspIRCd: (C) 2002-2010 InspIRCd Development Team -# See: http://wiki.inspircd.org/Credits +# InspIRCd -- Internet Relay Chat Daemon # -# This program is free but copyrighted software; see -# the file COPYING for details. +# Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org> +# Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc> # -# --------------------------------------------------- +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + ### THIS IS DESIGNED TO BE RUN BY MAKE! DO NOT RUN FROM THE SHELL (because it MIGHT sigterm the shell)! ### diff --git a/make/template/inspircd b/make/template/inspircd index d5e89040d..a75140c5d 100644 --- a/make/template/inspircd +++ b/make/template/inspircd @@ -1,16 +1,24 @@ #!/usr/bin/env perl -# +------------------------------------+ -# | Inspire Internet Relay Chat Daemon | -# +------------------------------------+ + +# +# InspIRCd -- Internet Relay Chat Daemon +# +# Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org> # -# InspIRCd: (C) 2002-2010 InspIRCd Development Team -# See: http://wiki.inspircd.org/Credits +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. # -# This program is free but copyrighted software; see -# the file COPYING for details. +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. # -# --------------------------------------------------- +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # + + use strict; use POSIX; use Fcntl; diff --git a/make/template/main.mk b/make/template/main.mk index ff6d1e11c..eb551ba74 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -1,8 +1,27 @@ +# +# InspIRCd -- Internet Relay Chat Daemon +# +# Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org> +# +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + + +# # InspIRCd Main Makefile # -# (C) InspIRCd Development Team, 2002-2010 # This file is automagically generated by configure, from -# make/templates/main.mk. Any changes make to the generated +# make/template/main.mk. Any changes made to the generated # files will go away whenever it is regenerated! # # Please do not edit unless you know what you're doing. This @@ -10,6 +29,7 @@ # them by configure. # + CC = @CC@ SYSTEM = @SYSTEM@ BUILDPATH = @BUILD_DIR@ diff --git a/make/unit-cc.pl b/make/unit-cc.pl index fbe36c4d2..7474365aa 100755 --- a/make/unit-cc.pl +++ b/make/unit-cc.pl @@ -1,4 +1,24 @@ #!/usr/bin/env perl + +# +# InspIRCd -- Internet Relay Chat Daemon +# +# Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org> +# +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + + use strict; use warnings; BEGIN { push @INC, $ENV{SOURCEPATH}; } diff --git a/make/utilities.pm b/make/utilities.pm index 9ee4364c2..9281246fb 100644 --- a/make/utilities.pm +++ b/make/utilities.pm @@ -1,14 +1,24 @@ -# +------------------------------------+ -# | Inspire Internet Relay Chat Daemon | -# +------------------------------------+ # -# InspIRCd: (C) 2002-2010 InspIRCd Development Team -# See: http://wiki.inspircd.org/Credits +# InspIRCd -- Internet Relay Chat Daemon # -# This program is free but copyrighted software; see -# the file COPYING for details. +# Copyright (C) 2010 Daniel De Graaf <danieldg@inspircd.org> +# Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc> +# Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org> +# Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> # -# --------------------------------------------------- +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + package make::utilities; |