added a "DO NOT EDIT!" header and regenerated the credits_*h files

This commit is contained in:
Hartmut Holzgraefe 2000-11-22 23:20:35 +00:00
parent 929197cf83
commit e3dae1013d
3 changed files with 44 additions and 4 deletions

View file

@ -1,10 +1,22 @@
CREDIT_LINE("Apache","Rasmus Lerdorf, Stig Bakken, David Sklar");
/*
DO NOT EDIT THIS FILE!
it has been automaticaly created by php4/scripts/credits
from the information found in the various php4/ext/*/CREDITS
and sapi/*/CREDITS files
if you want to change an entry you have to edit the
appropriate CREDITS file instead
*/
CREDIT_LINE("aspell","Rasmus Lerdorf");
CREDIT_LINE("Assert","Thies C. Arntzen");
CREDIT_LINE("BC Math","Andi Gutmans");
CREDIT_LINE("bz2","Sterling Hughes");
CREDIT_LINE("ccvs","Brendan W. McAdams, Doug DeJulio");
CREDIT_LINE("cpdf","Uwe Steinmann");
CREDIT_LINE("ctype","Hartmut Holzgraefe");
CREDIT_LINE("CURL","Sterling Hughes");
CREDIT_LINE("CyberCash","Evan Klinger");
CREDIT_LINE("DAV","Stig Bakken");
@ -26,7 +38,7 @@ CREDIT_LINE("IMAP","Rex Logan, Mark Musone, Brian Wang, Kaj-Michael Lang, Antoni
CREDIT_LINE("Informix","Danny Heijl, Christian Cartus");
CREDIT_LINE("Ingres II","David Hénot");
CREDIT_LINE("InterBase","Jouni Ahto, Andrew Avdeev");
CREDIT_LINE("IRCG", "Sascha Schumann");
CREDIT_LINE("IRCG","Sascha Schumann");
CREDIT_LINE("Java","Sam Ruby");
CREDIT_LINE("LDAP","Amitay Isaacs, Eric Warnke, Rasmus Lerdorf, Gerrit Thomson");
CREDIT_LINE("MCAL","Mark Musone, Chuck Hagenbuch");
@ -63,3 +75,4 @@ CREDIT_LINE("XML","Stig Bakken, Thies C. Arntzen");
CREDIT_LINE("YAZ","Adam Dickmeiss");
CREDIT_LINE("Yellow Pages","Stephanie Wehner");
CREDIT_LINE("Zlib","Rasmus Lerdorf, Stefan Roehrich");
CREDIT_LINE("zZIPlib","Hartmut Holzgraefe");

View file

@ -1,5 +1,17 @@
/*
DO NOT EDIT THIS FILE!
it has been automaticaly created by php4/scripts/credits
from the information found in the various php4/ext/*/CREDITS
and sapi/*/CREDITS files
if you want to change an entry you have to edit the
appropriate CREDITS file instead
*/
CREDIT_LINE("AOLserver","Sascha Schumann");
CREDIT_LINE("Apache 1.3","Rasmus Lerdorf, Zeev Suraski");
CREDIT_LINE("Apache 1.3","Rasmus Lerdorf, Zeev Suraski, Stig Bakken, David Sklar");
CREDIT_LINE("Apache 2.0","Sascha Schumann");
CREDIT_LINE("Caudium / Roxen","David Hedbor");
CREDIT_LINE("CGI","Rasmus Lerdorf, Stig Bakken");

View file

@ -5,5 +5,20 @@ BEGIN { FS = "\n"; RS = "" }
for what in ext sapi
do
awk "$awkprog" $what/*/CREDITS | sort -f > ext/standard/credits_$what.h
file=ext/standard/credits_$what.h
cat >$file <<END
/*
DO NOT EDIT THIS FILE!
it has been automaticaly created by php4/scripts/credits
from the information found in the various php4/ext/*/CREDITS
and sapi/*/CREDITS files
if you want to change an entry you have to edit the
appropriate CREDITS file instead
*/
END
awk "$awkprog" $what/*/CREDITS | sort -f >> $file
done