
wrowe at apache
Jul 1, 2009, 12:54 PM
Post #1 of 1
(106 views)
Permalink
|
|
svn commit: r790346 - /httpd/mod_fcgid/trunk/mod_fcgid/mod_fcgid.rc
|
|
Author: wrowe Date: Wed Jul 1 19:54:21 2009 New Revision: 790346 URL: http://svn.apache.org/viewvc?rev=790346&view=rev Log: solve wrapping; copyright Modified: httpd/mod_fcgid/trunk/mod_fcgid/mod_fcgid.rc Modified: httpd/mod_fcgid/trunk/mod_fcgid/mod_fcgid.rc URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/mod_fcgid/mod_fcgid.rc?rev=790346&r1=790345&r2=790346&view=diff ============================================================================== --- httpd/mod_fcgid/trunk/mod_fcgid/mod_fcgid.rc (original) +++ httpd/mod_fcgid/trunk/mod_fcgid/mod_fcgid.rc Wed Jul 1 19:54:21 2009 @@ -1,3 +1,21 @@ + +#define ASF_COPYRIGHT "Copyright (c) 2009 The Apache Software " \ + "Foundation or its licensors, as applicable." + +#define ASF_LICENSE \ + "Licensed to the Apache Software Foundation (ASF) under one or more " \ + "contributor license agreements. See the NOTICE file distributed with " \ + "this work for additional information regarding copyright ownership. " \ + "The ASF licenses this file to You under the Apache License, Version 2.0 " \ + "(the ""License""); you may not use this file except in compliance with " \ + "the License. You may obtain a copy of the License at\r\n\r\n" \ + "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \ + "Unless required by applicable law or agreed to in writing, software " \ + "distributed under the License is distributed on an ""AS IS"" BASIS, " \ + "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. " \ + "See the License for the specific language governing permissions and " \ + "limitations under the License." + 1 VERSIONINFO FILEVERSION 2,3,0,200 PRODUCTVERSION 2,3,0,200 @@ -15,12 +33,12 @@ BEGIN BLOCK "040904b0" BEGIN - VALUE "Comments", "Licensed under the Apache License, Version 2.0 (the ""License""); you may not use this file except in compliance with the License. You may obtain a copy of the License at\r\n\r\nhttp://www.apache.org/licenses/LICENSE-2.0\r\n\r\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an ""AS IS"" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\0" + VALUE "Comments", ASF_LICENSE "\0" VALUE "CompanyName", "Apache Software Foundation\0" VALUE "FileDescription", "fcgid_module for Apache\0" VALUE "FileVersion", "2.3.1\0" VALUE "InternalName", "mod_fcgid.so\0" - VALUE "LegalCopyright", "Copyright \0" + VALUE "LegalCopyright", ASF_COPYRIGHT "\0" VALUE "OriginalFilename", "mod_fcgid.so\0" VALUE "ProductName", "Apache HTTP Server Project\0" VALUE "ProductVersion", "2.3.1\0"
|