-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");
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");
CREDIT_LINE("YAZ","Adam Dickmeiss");
CREDIT_LINE("Yellow Pages","Stephanie Wehner");
CREDIT_LINE("Zlib","Rasmus Lerdorf, Stefan Roehrich");
+CREDIT_LINE("zZIPlib","Hartmut Holzgraefe");
+/*
+ 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");
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