Update copyright notices

This commit is contained in:
Joel Rosdahl 2010-02-17 21:01:34 +01:00
parent ecf85fc492
commit 976e256525
6 changed files with 29 additions and 9 deletions

View File

@ -3,9 +3,9 @@
The idea is based on the shell-script compilercache by Erik Thiele <erikyyy@erikyyy.de>
Copyright (C) Andrew Tridgell 2002
Copyright (C) Andrew Tridgell 2002-2007
Copyright (C) Martin Pool 2003
Copyright (C) Joel Rosdahl 2009
Copyright (C) Joel Rosdahl 2009-2010
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -1644,7 +1644,8 @@ static int ccache_main(int argc, char *argv[])
switch (c) {
case 'V':
printf("ccache version %s\n", CCACHE_VERSION);
printf("Copyright Andrew Tridgell 2002\n");
printf("Copyright Andrew Tridgell 2002-2007\n");
printf("Copyright Joel Rosdahl 2009-2010\n");
printf("Released under the GNU GPL v2 or later\n");
exit(0);

View File

@ -1,5 +1,6 @@
/*
Copyright (C) Andrew Tridgell 2002
Copyright (C) Andrew Tridgell 2002-2006
Copyright (C) Joel Rosdahl 2009-2010
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) Joel Rosdahl 2009
* Copyright (C) Joel Rosdahl 2009-2010
*
* This program 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

View File

@ -1,5 +1,6 @@
/*
Copyright (C) Andrew Tridgell 2002
Copyright (C) Andrew Tridgell 2002-2004
Copyright (C) Joel Rosdahl 2009-2010
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

22
test.sh
View File

@ -1,7 +1,23 @@
#!/bin/sh
# a simple test suite for ccache
# tridge@samba.org
#
# A simple test suite for ccache.
#
# Copyright (C) Andrew Tridgell 2002-2007
# Copyright (C) Joel Rosdahl 2009-2010
#
# This program 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
if test -n "$CC"; then
COMPILER="$CC"

1
util.c
View File

@ -1,5 +1,6 @@
/*
Copyright (C) Andrew Tridgell 2002
Copyright (C) Joel Rosdahl 2009-2010
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by