forked from ariadne/pkgconf
everything: update copyright to note multiple authors
parent
31b9a53155
commit
0a5cb4c4ec
2
COPYING
2
COPYING
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2011, 2012 William Pitcock <nenolod@dereferenced.org>.
|
Copyright (c) 2011, 2012 pkgconf authors (see AUTHORS).
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
purpose with or without fee is hereby granted, provided that the above
|
purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* argvsplit.c
|
* argvsplit.c
|
||||||
* argv_split() routine
|
* argv_split() routine
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2012 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* dependency.c
|
* dependency.c
|
||||||
* dependency parsing and management
|
* dependency parsing and management
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011, 2012 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2011, 2012 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
2
fileio.c
2
fileio.c
|
@ -2,7 +2,7 @@
|
||||||
* fileio.c
|
* fileio.c
|
||||||
* File reading utilities
|
* File reading utilities
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2012 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* fragment.c
|
* fragment.c
|
||||||
* Management of fragment lists.
|
* Management of fragment lists.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2012 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
4
main.c
4
main.c
|
@ -2,7 +2,7 @@
|
||||||
* main.c
|
* main.c
|
||||||
* main() routine, printer functions
|
* main() routine, printer functions
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2011 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
@ -415,7 +415,7 @@ static void
|
||||||
version(void)
|
version(void)
|
||||||
{
|
{
|
||||||
printf("%s %s%s\n", PACKAGE_NAME, PACKAGE_VERSION, HAVE_STRICT_MODE ? " [strict]" : " [pkg-config compatible]");
|
printf("%s %s%s\n", PACKAGE_NAME, PACKAGE_VERSION, HAVE_STRICT_MODE ? " [strict]" : " [pkg-config compatible]");
|
||||||
printf("Copyright (c) 2011 - 2012 William Pitcock <nenolod@dereferenced.org>.\n\n");
|
printf("Copyright (c) 2011 - 2012 pkgconf authors (see AUTHORS in documentation directory).\n\n");
|
||||||
printf("Permission to use, copy, modify, and/or distribute this software for any\n");
|
printf("Permission to use, copy, modify, and/or distribute this software for any\n");
|
||||||
printf("purpose with or without fee is hereby granted, provided that the above\n");
|
printf("purpose with or without fee is hereby granted, provided that the above\n");
|
||||||
printf("copyright notice and this permission notice appear in all copies.\n\n");
|
printf("copyright notice and this permission notice appear in all copies.\n\n");
|
||||||
|
|
2
pkg.c
2
pkg.c
|
@ -2,7 +2,7 @@
|
||||||
* pkg.c
|
* pkg.c
|
||||||
* higher-level dependency graph compilation, management and manipulation
|
* higher-level dependency graph compilation, management and manipulation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011, 2012 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2011, 2012 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
2
pkg.h
2
pkg.h
|
@ -2,7 +2,7 @@
|
||||||
* pkg.h
|
* pkg.h
|
||||||
* Global include file for everything.
|
* Global include file for everything.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2011 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
2
stdinc.h
2
stdinc.h
|
@ -2,7 +2,7 @@
|
||||||
* stdinc.h
|
* stdinc.h
|
||||||
* pull in standard headers (including portability hacks)
|
* pull in standard headers (including portability hacks)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2012 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
2
tuple.c
2
tuple.c
|
@ -2,7 +2,7 @@
|
||||||
* tuple.c
|
* tuple.c
|
||||||
* management of key->value tuples
|
* management of key->value tuples
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011, 2012 William Pitcock <nenolod@dereferenced.org>.
|
* Copyright (c) 2011, 2012 pkgconf authors (see AUTHORS).
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
|
|
Loading…
Reference in New Issue